netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Lunn <andrew@lunn.ch>
To: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	kernel@savoirfairelinux.com,
	"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH net-next] net: dsa: fix preparation of a port STP update
Date: Tue, 29 Sep 2015 18:42:45 +0200	[thread overview]
Message-ID: <20150929164245.GA3368@lunn.ch> (raw)
In-Reply-To: <1443544716-9130-1-git-send-email-vivien.didelot@savoirfairelinux.com>

On Tue, Sep 29, 2015 at 12:38:36PM -0400, Vivien Didelot wrote:
> 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>
Fixes: 3563606258cf ("switchdev: convert STP update to switchdev attr set")

David:
  This should be included in the next -rc.

Thanks
	Andrew

> ---
>  net/dsa/slave.c | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/net/dsa/slave.c b/net/dsa/slave.c
> index 0ae427c..02a3af8 100644
> --- a/net/dsa/slave.c
> +++ b/net/dsa/slave.c
> @@ -453,12 +453,17 @@ static int dsa_slave_port_attr_set(struct net_device *dev,
>  				   struct switchdev_attr *attr,
>  				   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) {
>  	case SWITCHDEV_ATTR_PORT_STP_STATE:
> -		if (switchdev_trans_ph_commit(trans))
> -			ret = dsa_slave_stp_update(dev, attr->u.stp_state);
> +		if (switchdev_trans_ph_prepare(trans))
> +			ret = ds->drv->port_stp_update ? 0 : -EOPNOTSUPP;
> +		else
> +			ret = ds->drv->port_stp_update(ds, p->port,
> +						       attr->u.stp_state);
>  		break;
>  	default:
>  		ret = -EOPNOTSUPP;
> -- 
> 2.6.0
> 

  reply	other threads:[~2015-09-29 16:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-29 16:38 [PATCH net-next] net: dsa: fix preparation of a port STP update Vivien Didelot
2015-09-29 16:42 ` Andrew Lunn [this message]
2015-09-29 18:17   ` Vivien Didelot
2015-09-30  4:35 ` David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150929164245.GA3368@lunn.ch \
    --to=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=kernel@savoirfairelinux.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=vivien.didelot@savoirfairelinux.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).