From: YOSHIFUJI Hideaki Date: Thu, 24 Aug 2006 00:21:50 +0000 (-0700) Subject: [IPV6] ROUTE: Allow searching subtree only. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fefc2a6c201aeafc1d0329a140de502d49f69d04;p=linux-beck.git [IPV6] ROUTE: Allow searching subtree only. Signed-off-by: YOSHIFUJI Hideaki Acked-by: Ville Nuorvala Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c index 19ee7375daa9..b706424e70b8 100644 --- a/net/ipv6/ip6_fib.c +++ b/net/ipv6/ip6_fib.c @@ -899,7 +899,7 @@ struct fib6_node * fib6_lookup(struct fib6_node *root, struct in6_addr *daddr, } }; - fn = fib6_lookup_1(root, args); + fn = fib6_lookup_1(root, daddr ? args : args + 1); if (fn == NULL || fn->fn_flags & RTN_TL_ROOT) fn = root;