Petr Machata
2018-May-24 15:10 UTC
[Bridge] [PATCH net-next 6/7] net: bridge: Notify about bridge VLANs
A driver might need to react to changes in settings of brentry VLANs. Therefore send switchdev port notifications for these as well. Reuse SWITCHDEV_OBJ_ID_PORT_VLAN for this purpose. Listeners should use netif_is_bridge_master() on orig_dev to determine whether the notification is about a bridge port or a bridge. Signed-off-by: Petr Machata <petrm at mellanox.com> --- net/bridge/br_vlan.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/net/bridge/br_vlan.c b/net/bridge/br_vlan.c index a75fe930..14c1b6c 100644 --- a/net/bridge/br_vlan.c +++ b/net/bridge/br_vlan.c @@ -268,6 +268,10 @@ static int __vlan_add(struct net_bridge_vlan *v, u16 flags) goto out_filt; v->brvlan = masterv; v->stats = masterv->stats; + } else { + err = br_switchdev_port_obj_add(dev, v->vid, flags); + if (err && err != -EOPNOTSUPP) + goto out; } /* Add the dev mac and count the vlan only if it's usable */ @@ -303,6 +307,8 @@ static int __vlan_add(struct net_bridge_vlan *v, u16 flags) br_vlan_put_master(masterv); v->brvlan = NULL; } + } else { + br_switchdev_port_obj_del(dev, v->vid); } goto out; @@ -328,6 +334,11 @@ static int __vlan_del(struct net_bridge_vlan *v) err = __vlan_vid_del(p->dev, p->br, v->vid); if (err) goto out; + } else { + err = br_switchdev_port_obj_del(v->br->dev, v->vid); + if (err && err != -EOPNOTSUPP) + goto out; + err = 0; } if (br_vlan_should_use(v)) { @@ -605,6 +616,9 @@ int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags, bool *changed) vg->num_vlans++; *changed = true; } + ret = br_switchdev_port_obj_add(br->dev, vid, flags); + if (ret && ret != -EOPNOTSUPP) + return ret; if (__vlan_add_flags(vlan, flags)) *changed = true; -- 2.4.11
Nikolay Aleksandrov
2018-May-25 12:08 UTC
[Bridge] [PATCH net-next 6/7] net: bridge: Notify about bridge VLANs
On 24/05/18 18:10, Petr Machata wrote:> A driver might need to react to changes in settings of brentry VLANs. > Therefore send switchdev port notifications for these as well. Reuse > SWITCHDEV_OBJ_ID_PORT_VLAN for this purpose. Listeners should use > netif_is_bridge_master() on orig_dev to determine whether the > notification is about a bridge port or a bridge. > > Signed-off-by: Petr Machata <petrm at mellanox.com> > --- > net/bridge/br_vlan.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) >Reviewed-by: Nikolay Aleksandrov <nikolay at cumulusnetworks.com>
Vivien Didelot
2018-May-25 16:17 UTC
[Bridge] [PATCH net-next 6/7] net: bridge: Notify about bridge VLANs
Hi Petr, Petr Machata <petrm at mellanox.com> writes:> A driver might need to react to changes in settings of brentry VLANs. > Therefore send switchdev port notifications for these as well. Reuse > SWITCHDEV_OBJ_ID_PORT_VLAN for this purpose. Listeners should use > netif_is_bridge_master() on orig_dev to determine whether the > notification is about a bridge port or a bridge. > > Signed-off-by: Petr Machata <petrm at mellanox.com>> + } else { > + err = br_switchdev_port_obj_add(dev, v->vid, flags); > + if (err && err != -EOPNOTSUPP) > + goto out; > }Except that br_switchdev_port_obj_add taking vid and flags arguments seems confusing to me, the change looks good: Reviewed-by: Vivien Didelot <vivien.didelot at savoirfairelinux.com> Thanks, Vivien