aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
diff options
context:
space:
mode:
authorElad Raz <eladr@mellanox.com>2016-01-06 13:01:08 +0100
committerDavid S. Miller <davem@davemloft.net>2016-01-06 14:42:41 -0500
commit29edf44f858a3f923c16f9f5b1aa790e44b8feb9 (patch)
treee0f30295c5c6be36db062c063258384682495e38 /drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
parentbridge: add vlan filtering change for new bridged device (diff)
downloadlinux-dev-29edf44f858a3f923c16f9f5b1aa790e44b8feb9.tar.xz
linux-dev-29edf44f858a3f923c16f9f5b1aa790e44b8feb9.zip
mlxsw: Fixing vlans init range
Initialize VLANs 0..4095 (Remove init for VID 4096). Signed-off-by: Elad Raz <eladr@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
index 62159547ebf9..dcf77c9d7649 100644
--- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
+++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
@@ -1201,7 +1201,8 @@ int mlxsw_sp_port_vlan_init(struct mlxsw_sp_port *mlxsw_sp_port)
* with VID 1.
*/
mlxsw_sp_port->pvid = 1;
- err = __mlxsw_sp_port_vlans_del(mlxsw_sp_port, 0, VLAN_N_VID, true);
+ err = __mlxsw_sp_port_vlans_del(mlxsw_sp_port, 0, VLAN_N_VID - 1,
+ true);
if (err) {
netdev_err(dev, "Unable to init VLANs\n");
return err;