All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bridge] [PATCH v2 net-next] bridge: Fix incorrect judgment of promisc
@ 2014-06-05 11:53 ` Toshiaki Makita
  0 siblings, 0 replies; 14+ messages in thread
From: Toshiaki Makita @ 2014-06-05 11:53 UTC (permalink / raw)
  To: David S . Miller, Stephen Hemminger
  Cc: Vlad Yasevich, netdev, David Laight, bridge

br_manage_promisc() incorrectly expects br_auto_port() to return only 0
or 1, while it actually returns flags, i.e., a subset of BR_AUTO_MASK.

Signed-off-by: Toshiaki Makita <makita.toshiaki@lab.ntt.co.jp>
---
 net/bridge/br_if.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c
index a08d2b8..3eca3fd 100644
--- a/net/bridge/br_if.c
+++ b/net/bridge/br_if.c
@@ -153,7 +153,8 @@ void br_manage_promisc(struct net_bridge *br)
 			 * This lets us disable promiscuous mode and write
 			 * this config to hw.
 			 */
-			if (br->auto_cnt <= br_auto_port(p))
+			if (br->auto_cnt == 0 ||
+			    (br->auto_cnt == 1 && br_auto_port(p)))
 				br_port_clear_promisc(p);
 			else
 				br_port_set_promisc(p);
-- 
1.8.1.2


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

end of thread, other threads:[~2014-06-06 14:13 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 11:53 [Bridge] [PATCH v2 net-next] bridge: Fix incorrect judgment of promisc Toshiaki Makita
2014-06-05 11:53 ` Toshiaki Makita
2014-06-05 12:30 ` [Bridge] " Michael S. Tsirkin
2014-06-05 12:30   ` Michael S. Tsirkin
2014-06-05 13:01   ` [Bridge] " Toshiaki Makita
2014-06-05 13:01     ` Toshiaki Makita
2014-06-05 14:57     ` [Bridge] " Vlad Yasevich
2014-06-05 14:57       ` Vlad Yasevich
2014-06-05 22:21 ` [Bridge] " David Miller
2014-06-05 22:21   ` David Miller
2014-06-06  8:48   ` [Bridge] " David Laight
2014-06-06  8:48     ` David Laight
2014-06-06 14:13     ` [Bridge] " Vlad Yasevich
2014-06-06 14:13       ` Vlad Yasevich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.