diff options
author | Cong Wang <amwang@redhat.com> | 2013-08-31 05:44:34 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-01 02:30:00 (GMT) |
commit | e15a00aafa4b7953ad717d3cb1ad7acf4ff76945 (patch) | |
tree | 7acce1d228f31755cac9b9d10d8574b48eb89123 /include/net/addrconf.h | |
parent | e4c7ed415387cf718ffbec305396c30cee092987 (diff) | |
download | linux-fsl-qoriq-e15a00aafa4b7953ad717d3cb1ad7acf4ff76945.tar.xz |
vxlan: add ipv6 route short circuit support
route short circuit only has IPv4 part, this patch adds
the IPv6 part. nd_tbl will be needed.
Cc: David S. Miller <davem@davemloft.net>
Cc: David Stevens <dlstevens@us.ibm.com>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/addrconf.h')
-rw-r--r-- | include/net/addrconf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/addrconf.h b/include/net/addrconf.h index 5339cab..bcf9573 100644 --- a/include/net/addrconf.h +++ b/include/net/addrconf.h @@ -153,6 +153,7 @@ struct ipv6_stub { int (*ipv6_dst_lookup)(struct sock *sk, struct dst_entry **dst, struct flowi6 *fl6); void (*udpv6_encap_enable)(void); + struct neigh_table *nd_tbl; }; extern const struct ipv6_stub *ipv6_stub __read_mostly; |