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 /net | |
parent | e4c7ed415387cf718ffbec305396c30cee092987 (diff) | |
download | linux-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 'net')
-rw-r--r-- | net/ipv6/af_inet6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 0c9c22f..1996a7c 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -815,6 +815,7 @@ static const struct ipv6_stub ipv6_stub_impl = { .ipv6_sock_mc_drop = ipv6_sock_mc_drop, .ipv6_dst_lookup = ip6_dst_lookup, .udpv6_encap_enable = udpv6_encap_enable, + .nd_tbl = &nd_tbl, }; static int __init inet6_init(void) |