bridge: Adjust min age inc for HZ > 256
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>
Thu, 1 Mar 2012 08:12:18 +0000 (08:12 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Mar 2012 02:57:39 +0000 (21:57 -0500)
min age increment needs to round up its min age tick for all
HZ values to guarantee message age is increasing.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Signed-off-by: David S. Miller <davem@davemloft.net>

net/bridge/br_stp.c

index dd147d7..c9ef3db 100644 (file)
@@ -17,9 +17,9 @@
 #include "br_private_stp.h"
 
 /* since time values in bpdu are in jiffies and then scaled (1/256)
- * before sending, make sure that is at least one.
+ * before sending, make sure that is at least one STP tick.
  */
-#define MESSAGE_AGE_INCR       ((HZ < 256) ? 1 : (HZ/256))
+#define MESSAGE_AGE_INCR       ((HZ / 256) + 1)
 
 static const char *const br_port_state_names[] = {
        [BR_STATE_DISABLED] = "disabled",