diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-03 07:43:47 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-05 11:41:58 +0200 |
commit | 97cac0821af4474ec4ba3a9e7a36b98ed9b6db88 (patch) | |
tree | 49c33db384053e154ce37839d07eae93f9cd4eae /include/net/ip6_fib.h | |
parent | cxgb3: Convert t3_l2t_get() over to dst_neigh_lookup(). (diff) | |
download | linux-97cac0821af4474ec4ba3a9e7a36b98ed9b6db88.tar.xz linux-97cac0821af4474ec4ba3a9e7a36b98ed9b6db88.zip |
ipv6: Store route neighbour in rt6_info struct.
This makes for a simplified conversion away from dst_get_neighbour*().
All code outside of ipv6 will use neigh lookups via dst_neigh_lookup*().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_fib.h')
-rw-r--r-- | include/net/ip6_fib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index a192f7807659..0fedbd8d747a 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -86,6 +86,8 @@ struct fib6_table; struct rt6_info { struct dst_entry dst; + struct neighbour *n; + /* * Tail elements of dst_entry (__refcnt etc.) * and these elements (rarely used in hot path) are in |