mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
net: bridge: mst: Notify switchdev drivers of MST state changes
Generate a switchdev notification whenever an MST state changes. This notification is keyed by the VLANs MSTI rather than the VID, since multiple VLANs may share the same MST instance. Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> Acked-by: Nikolay Aleksandrov <razor@blackwall.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
6284c723d9
commit
7ae9147f43
2 changed files with 25 additions and 0 deletions
|
@ -30,13 +30,31 @@ static void br_mst_vlan_set_state(struct net_bridge_port *p, struct net_bridge_v
|
|||
int br_mst_set_state(struct net_bridge_port *p, u16 msti, u8 state,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct switchdev_attr attr = {
|
||||
.id = SWITCHDEV_ATTR_ID_PORT_MST_STATE,
|
||||
.orig_dev = p->dev,
|
||||
.u.mst_state = {
|
||||
.msti = msti,
|
||||
.state = state,
|
||||
},
|
||||
};
|
||||
struct net_bridge_vlan_group *vg;
|
||||
struct net_bridge_vlan *v;
|
||||
int err;
|
||||
|
||||
vg = nbp_vlan_group(p);
|
||||
if (!vg)
|
||||
return 0;
|
||||
|
||||
/* MSTI 0 (CST) state changes are notified via the regular
|
||||
* SWITCHDEV_ATTR_ID_PORT_STP_STATE.
|
||||
*/
|
||||
if (msti) {
|
||||
err = switchdev_port_attr_set(p->dev, &attr, extack);
|
||||
if (err && err != -EOPNOTSUPP)
|
||||
return err;
|
||||
}
|
||||
|
||||
list_for_each_entry(v, &vg->vlan_list, vlist) {
|
||||
if (v->brvlan->msti != msti)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue