aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge/br_stp.c
diff options
context:
space:
mode:
authorstephen hemminger <shemminger@vyatta.com>2011-07-22 03:47:06 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-22 20:01:12 -0400
commit0c03150e7ea8f7fcd03cfef29385e0010b22ee92 (patch)
tree60dae3c582863b79df992a605c18a0029469b67b /net/bridge/br_stp.c
parent781223a15c510b4cb11328603bfc41ec8352f015 (diff)
bridge: send proper message_age in config BPDU
A bridge topology with three systems: +------+ +------+ | A(2) |--| B(1) | +------+ +------+ \ / +------+ | C(3) | +------+ What is supposed to happen: * bridge with the lowest ID is elected root (for example: B) * C detects that A->C is higher cost path and puts in blocking state What happens. Bridge with lowest id (B) is elected correctly as root and things start out fine initially. But then config BPDU doesn't get transmitted from A -> C. Because of that the link from A-C is transistioned to the forwarding state. The root cause of this is that the configuration messages is generated with bogus message age, and dropped before sending. In the standardmessage_age is supposed to be: the time since the generation of the Configuration BPDU by the Root that instigated the generation of this Configuration BPDU. Reimplement this by recording the timestamp (age + jiffies) when recording config information. The old code incorrectly used the time elapsed on the ageing timer which was incorrect. See also: https://bugzilla.vyatta.com/show_bug.cgi?id=7164 Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_stp.c')
-rw-r--r--net/bridge/br_stp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bridge/br_stp.c b/net/bridge/br_stp.c
index bb4383e84de9..fcff62251547 100644
--- a/net/bridge/br_stp.c
+++ b/net/bridge/br_stp.c
@@ -164,8 +164,7 @@ void br_transmit_config(struct net_bridge_port *p)
164 else { 164 else {
165 struct net_bridge_port *root 165 struct net_bridge_port *root
166 = br_get_port(br, br->root_port); 166 = br_get_port(br, br->root_port);
167 bpdu.message_age = br->max_age 167 bpdu.message_age = (jiffies - root->designated_age)
168 - (root->message_age_timer.expires - jiffies)
169 + MESSAGE_AGE_INCR; 168 + MESSAGE_AGE_INCR;
170 } 169 }
171 bpdu.max_age = br->max_age; 170 bpdu.max_age = br->max_age;
@@ -189,6 +188,7 @@ static inline void br_record_config_information(struct net_bridge_port *p,
189 p->designated_cost = bpdu->root_path_cost; 188 p->designated_cost = bpdu->root_path_cost;
190 p->designated_bridge = bpdu->bridge_id; 189 p->designated_bridge = bpdu->bridge_id;
191 p->designated_port = bpdu->port_id; 190 p->designated_port = bpdu->port_id;
191 p->designated_age = jiffies + bpdu->message_age;
192 192
193 mod_timer(&p->message_age_timer, jiffies 193 mod_timer(&p->message_age_timer, jiffies
194 + (p->br->max_age - bpdu->message_age)); 194 + (p->br->max_age - bpdu->message_age));