public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] bridge: start hello_timer when enabling KERNEL_STP in br_stp_start
@ 2017-05-19 14:20 Xin Long
  2017-05-19 14:45 ` Nikolay Aleksandrov
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Xin Long @ 2017-05-19 14:20 UTC (permalink / raw)
  To: network dev; +Cc: davem, nikolay, cera

Since commit 76b91c32dd86 ("bridge: stp: when using userspace stp stop
kernel hello and hold timers"), bridge would not start hello_timer if
stp_enabled is not KERNEL_STP when br_dev_open.

The problem is even if users set stp_enabled with KERNEL_STP later,
the timer will still not be started. It causes that KERNEL_STP can
not really work. Users have to re-ifup the bridge to avoid this.

This patch is to fix it by starting br->hello_timer when enabling
KERNEL_STP in br_stp_start.

As an improvement, it's also to start hello_timer again only when
br->stp_enabled is KERNEL_STP in br_hello_timer_expired, there is
no reason to start the timer again when it's NO_STP.

Fixes: 76b91c32dd86 ("bridge: stp: when using userspace stp stop kernel hello and hold timers")
Reported-by: Haidong Li <haili@redhat.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 net/bridge/br_stp_if.c    | 1 +
 net/bridge/br_stp_timer.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/bridge/br_stp_if.c b/net/bridge/br_stp_if.c
index 08341d2..0db8102 100644
--- a/net/bridge/br_stp_if.c
+++ b/net/bridge/br_stp_if.c
@@ -179,6 +179,7 @@ static void br_stp_start(struct net_bridge *br)
 		br_debug(br, "using kernel STP\n");
 
 		/* To start timers on any ports left in blocking */
+		mod_timer(&br->hello_timer, jiffies + br->hello_time);
 		br_port_state_selection(br);
 	}
 
diff --git a/net/bridge/br_stp_timer.c b/net/bridge/br_stp_timer.c
index c98b3e5..60b6fe2 100644
--- a/net/bridge/br_stp_timer.c
+++ b/net/bridge/br_stp_timer.c
@@ -40,7 +40,7 @@ static void br_hello_timer_expired(unsigned long arg)
 	if (br->dev->flags & IFF_UP) {
 		br_config_bpdu_generation(br);
 
-		if (br->stp_enabled != BR_USER_STP)
+		if (br->stp_enabled == BR_KERNEL_STP)
 			mod_timer(&br->hello_timer,
 				  round_jiffies(jiffies + br->hello_time));
 	}
-- 
2.1.0

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

end of thread, other threads:[~2017-05-21 17:34 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-19 14:20 [PATCH net] bridge: start hello_timer when enabling KERNEL_STP in br_stp_start Xin Long
2017-05-19 14:45 ` Nikolay Aleksandrov
2017-05-19 14:48   ` Florian Westphal
2017-05-19 15:03     ` Nikolay Aleksandrov
2017-05-19 14:51   ` Ivan Vecera
2017-05-19 14:57     ` Nikolay Aleksandrov
2017-05-19 15:03       ` Ivan Vecera
2017-05-19 15:05         ` Nikolay Aleksandrov
2017-05-19 15:17           ` Ivan Vecera
2017-05-19 15:41 ` Nikolay Aleksandrov
2017-05-19 16:29 ` Ivan Vecera
2017-05-21 17:34 ` David Miller

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