aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge/br_mrp_switchdev.c
diff options
context:
space:
mode:
authorVladimir Oltean <[email protected]>2021-02-13 20:43:17 +0000
committerDavid S. Miller <[email protected]>2021-02-15 01:38:11 +0000
commitdcbdf1350e3312c199dbc6a76f41cf8f67e8c09c (patch)
tree2856b192afcaff113ca1285ffc078c92e5584b15 /net/bridge/br_mrp_switchdev.c
parentnet: bridge: propagate extack through store_bridge_parm (diff)
downloadkernel-dcbdf1350e3312c199dbc6a76f41cf8f67e8c09c.tar.gz
kernel-dcbdf1350e3312c199dbc6a76f41cf8f67e8c09c.zip
net: bridge: propagate extack through switchdev_port_attr_set
The benefit is the ability to propagate errors from switchdev drivers for the SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING and SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL attributes. Signed-off-by: Vladimir Oltean <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/bridge/br_mrp_switchdev.c')
-rw-r--r--net/bridge/br_mrp_switchdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bridge/br_mrp_switchdev.c b/net/bridge/br_mrp_switchdev.c
index 75a7e8d0a268..3c9a4abcf4ee 100644
--- a/net/bridge/br_mrp_switchdev.c
+++ b/net/bridge/br_mrp_switchdev.c
@@ -178,7 +178,7 @@ int br_mrp_port_switchdev_set_state(struct net_bridge_port *p, u32 state)
};
int err;
- err = switchdev_port_attr_set(p->dev, &attr);
+ err = switchdev_port_attr_set(p->dev, &attr, NULL);
if (err && err != -EOPNOTSUPP)
br_warn(p->br, "error setting offload MRP state on port %u(%s)\n",
(unsigned int)p->port_no, p->dev->name);
@@ -196,7 +196,7 @@ int br_mrp_port_switchdev_set_role(struct net_bridge_port *p,
};
int err;
- err = switchdev_port_attr_set(p->dev, &attr);
+ err = switchdev_port_attr_set(p->dev, &attr, NULL);
if (err && err != -EOPNOTSUPP)
return err;