diff options
author | Petr Machata <petrm@mellanox.com> | 2018-11-23 02:48:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-24 05:02:24 +0300 |
commit | ab4a16869f25648570976a4d55923d0c9e7effb8 (patch) | |
tree | cb89dc52126ff9665c92f32cd61613316c607093 /net/dsa | |
parent | d17d9f5e5143125f9274194d8f7368f76b9d141f (diff) | |
download | linux-ab4a16869f25648570976a4d55923d0c9e7effb8.tar.xz |
rocker, dsa, ethsw: Don't filter VLAN events on bridge itself
Due to an explicit check in rocker_world_port_obj_vlan_add(),
dsa_slave_switchdev_event() resp. port_switchdev_event(), VLAN objects
that are added to a device that is not a front-panel port device are
ignored. Therefore this check is immaterial.
Signed-off-by: Petr Machata <petrm@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/port.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/dsa/port.c b/net/dsa/port.c index ed0595459df1..2d7e01b23572 100644 --- a/net/dsa/port.c +++ b/net/dsa/port.c @@ -252,9 +252,6 @@ int dsa_port_vlan_add(struct dsa_port *dp, .vlan = vlan, }; - if (netif_is_bridge_master(vlan->obj.orig_dev)) - return -EOPNOTSUPP; - if (br_vlan_enabled(dp->bridge_dev)) return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_ADD, &info); |