Commit 3a854210 authored by Xin Long's avatar Xin Long Committed by Greg Kroah-Hartman

bridge: start hello_timer when enabling KERNEL_STP in br_stp_start


[ Upstream commit 6d18c732 ]

Since commit 76b91c32 ("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: 76b91c32 ("bridge: stp: when using userspace stp stop kernel hello and hold timers")
Reported-by: default avatarHaidong Li <haili@redhat.com>
Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Acked-by: default avatarNikolay Aleksandrov <nikolay@cumulusnetworks.com>
Reviewed-by: default avatarIvan Vecera <cera@cera.cz>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b543ccc4
...@@ -166,6 +166,7 @@ static void br_stp_start(struct net_bridge *br) ...@@ -166,6 +166,7 @@ static void br_stp_start(struct net_bridge *br)
br_debug(br, "using kernel STP\n"); br_debug(br, "using kernel STP\n");
/* To start timers on any ports left in blocking */ /* To start timers on any ports left in blocking */
mod_timer(&br->hello_timer, jiffies + br->hello_time);
br_port_state_selection(br); br_port_state_selection(br);
} }
......
...@@ -40,7 +40,7 @@ static void br_hello_timer_expired(unsigned long arg) ...@@ -40,7 +40,7 @@ static void br_hello_timer_expired(unsigned long arg)
if (br->dev->flags & IFF_UP) { if (br->dev->flags & IFF_UP) {
br_config_bpdu_generation(br); br_config_bpdu_generation(br);
if (br->stp_enabled != BR_USER_STP) if (br->stp_enabled == BR_KERNEL_STP)
mod_timer(&br->hello_timer, mod_timer(&br->hello_timer,
round_jiffies(jiffies + br->hello_time)); round_jiffies(jiffies + br->hello_time));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment