From 20ab72ce86c1a602b6df0e46abcc02a1f06ef957 Mon Sep 17 00:00:00 2001 From: glebius Date: Fri, 29 Oct 2010 10:57:18 +0000 Subject: Revert a small part of the r198301, that is entirely unrelated to the r198301 itself. It also broke the logic of not sending more than one ARP request per second, that consequently lead to a potential problem of flooding network with broadcast packets. MFC after: 1 week --- sys/netinet/if_ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet/if_ether.c') diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index a6ea36e..fb99708 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -381,7 +381,7 @@ retry: int canceled; LLE_ADDREF(la); - la->la_expire = time_second + V_arpt_down; + la->la_expire = time_second; canceled = callout_reset(&la->la_timer, hz * V_arpt_down, arptimer, la); if (canceled) -- cgit v1.1