public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] switchdev: fix BUG when port driver doesn't support set attr op
@ 2015-06-10 20:56 sfeldma
  2015-06-10 21:13 ` Andy Gospodarek
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: sfeldma @ 2015-06-10 20:56 UTC (permalink / raw)
  To: netdev; +Cc: jiri, bblanco

From: Scott Feldman <sfeldma@gmail.com>

Fix a BUG() where CONFIG_NET_SWITCHDEV is set but the driver for a bridged
port does not support switchdec_port_attr_set op.  Don't BUG() if
-EOPNOTSUPP is returned.

Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Reported-by: Brenden Blanco <bblanco@plumgrid.com>
---
 net/switchdev/switchdev.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/switchdev/switchdev.c b/net/switchdev/switchdev.c
index e008057..99bced4 100644
--- a/net/switchdev/switchdev.c
+++ b/net/switchdev/switchdev.c
@@ -103,7 +103,7 @@ static void switchdev_port_attr_set_work(struct work_struct *work)
 
 	rtnl_lock();
 	err = switchdev_port_attr_set(asw->dev, &asw->attr);
-	BUG_ON(err);
+	BUG_ON(err && err != -EOPNOTSUPP);
 	rtnl_unlock();
 
 	dev_put(asw->dev);
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-06-11 15:34 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-10 20:56 [PATCH net-next] switchdev: fix BUG when port driver doesn't support set attr op sfeldma
2015-06-10 21:13 ` Andy Gospodarek
2015-06-10 21:25 ` David Ahern
2015-06-10 21:47   ` Scott Feldman
2015-06-10 21:51     ` David Ahern
2015-06-10 22:00     ` Scott Feldman
2015-06-11  6:16       ` Jiri Pirko
2015-06-11 15:03         ` Scott Feldman
2015-06-11 15:34           ` Jiri Pirko
2015-06-11  7:06 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox