For addrconf timer use round_jiffies to round off to next interval (rather than manual rounding). Signed-off-by: Stephen Hemminger --- net/ipv6/addrconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/ipv6/addrconf.c 2010-03-15 16:10:25.069213714 -0700 +++ b/net/ipv6/addrconf.c 2010-03-15 16:10:25.709836446 -0700 @@ -3194,7 +3194,7 @@ restart: } } - addr_chk_timer.expires = time_before(next, jiffies + HZ) ? jiffies + HZ : next; + addr_chk_timer.expires = round_jiffies(next); add_timer(&addr_chk_timer); spin_unlock(&addrconf_verify_lock); rcu_read_unlock_bh(); -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html