lkml.org 
[lkml]   [2004]   [Jun]   [23]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
DateWed, 23 Jun 2004 12:14:24 +0530
FromKishore A K <>
Subject[Patch] [2.6.7] Bridge - Fix BPDU message_age
Fixes message_age field update in config BPDUs. Also checks whether the BPDU 
message age has exceeded bridge max age before transmitting config BPDUs.

Signed-off-by: Kishore A K <KishoreAK@myw.ltindia.com>

Index: linux-2.6.7/net/bridge/br_stp.c
=============================================================
--- linux-2.6.7/net/bridge/br_stp.c.orig    2004-06-17 20:17:27.000000000 +0530
+++ linux-2.6.7/net/bridge/br_stp.c    2004-06-22 19:32:49.015908632 +0530
@@ -161,20 +161,19 @@ void br_transmit_config(struct net_bridg
    if (!br_is_root_bridge(br)) {
        struct net_bridge_port *root
            = br_get_port(br, br->root_port);
-        bpdu.max_age = root->message_age_timer.expires - jiffies;
-
-        if (bpdu.max_age <= 0) bpdu.max_age = 1;
+        bpdu.message_age = br->max_age - 
+            (root->message_age_timer.expires - jiffies) + 1;
    }
    bpdu.max_age = br->max_age;
    bpdu.hello_time = br->hello_time;
    bpdu.forward_delay = br->forward_delay;

-    br_send_config_bpdu(p, &bpdu);
-
-    p->topology_change_ack = 0;
-    p->config_pending = 0;
-    
-    mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME);
+    if (bpdu.message_age < br->max_age) {
+        br_send_config_bpdu(p, &bpdu);
+        p->topology_change_ack = 0;
+        p->config_pending = 0;
+        mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME);
+    }
}

/* called under bridge lock */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 14:04    [from the cache]
©2003-2008