mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 22:58:29 +00:00
net: dsa: fix preparation of a port STP update
Because of the default 0 value of ret in dsa_slave_port_attr_set, a driver may return -EOPNOTSUPP from the commit phase of a STP state, which triggers a WARN() from switchdev. This happened on a 6185 switch which does not support hardware bridging. Reported-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Acked-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
21fdd092ac
commit
b8d866ac6a
1 changed files with 8 additions and 3 deletions
|
@ -453,12 +453,17 @@ static int dsa_slave_port_attr_set(struct net_device *dev,
|
||||||
struct switchdev_attr *attr,
|
struct switchdev_attr *attr,
|
||||||
struct switchdev_trans *trans)
|
struct switchdev_trans *trans)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
struct dsa_slave_priv *p = netdev_priv(dev);
|
||||||
|
struct dsa_switch *ds = p->parent;
|
||||||
|
int ret;
|
||||||
|
|
||||||
switch (attr->id) {
|
switch (attr->id) {
|
||||||
case SWITCHDEV_ATTR_PORT_STP_STATE:
|
case SWITCHDEV_ATTR_PORT_STP_STATE:
|
||||||
if (switchdev_trans_ph_commit(trans))
|
if (switchdev_trans_ph_prepare(trans))
|
||||||
ret = dsa_slave_stp_update(dev, attr->u.stp_state);
|
ret = ds->drv->port_stp_update ? 0 : -EOPNOTSUPP;
|
||||||
|
else
|
||||||
|
ret = ds->drv->port_stp_update(ds, p->port,
|
||||||
|
attr->u.stp_state);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret = -EOPNOTSUPP;
|
ret = -EOPNOTSUPP;
|
||||||
|
|
Loading…
Add table
Reference in a new issue