diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-03-20 20:05:47 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 20:05:47 -0500 |
commit | 52e1635631b342803aecaf81a362c1464e3da2e5 (patch) | |
tree | 971c40743f7fcb594697dd18d22e2d8b168d1785 /net/ipv6/route.c | |
parent | 930d6ff2e2a5f1538448d3b0b2652a8f0c0f6cba (diff) |
[IPV6]: ROUTE: Add router_probe_interval sysctl.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 8ba8900c0a5f..c797b9bbb7d1 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -234,7 +234,7 @@ static void rt6_probe(struct rt6_info *rt) | |||
234 | return; | 234 | return; |
235 | read_lock_bh(&neigh->lock); | 235 | read_lock_bh(&neigh->lock); |
236 | if (!(neigh->nud_state & NUD_VALID) && | 236 | if (!(neigh->nud_state & NUD_VALID) && |
237 | time_after(jiffies, neigh->updated + 60 * HZ)) { | 237 | time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) { |
238 | struct in6_addr mcaddr; | 238 | struct in6_addr mcaddr; |
239 | struct in6_addr *target; | 239 | struct in6_addr *target; |
240 | 240 | ||