diff options
author | David Ahern <dsahern@gmail.com> | 2019-03-22 16:06:09 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-29 20:53:45 +0300 |
commit | 3616d08bcbb564c7765187cd45ad392e49bad73a (patch) | |
tree | 150383f0c8b4de6bb39ec3b8440faf22497ff3ff /drivers/net/vxlan.c | |
parent | 5f4d6749c0659fe15c2e3b8d47c10f6e241c18c7 (diff) | |
download | linux-3616d08bcbb564c7765187cd45ad392e49bad73a.tar.xz |
ipv6: Move ipv6 stubs to a separate header file
The number of stubs is growing and has nothing to do with addrconf.
Move the definition of the stubs to a separate header file and update
users. In the move, drop the vxlan specific comment before ipv6_stub.
Code move only; no functional change intended.
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/vxlan.c')
-rw-r--r-- | drivers/net/vxlan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index d76dfed8d9bb..5994d5415a03 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -20,6 +20,7 @@ #include <linux/ethtool.h> #include <net/arp.h> #include <net/ndisc.h> +#include <net/ipv6_stubs.h> #include <net/ip.h> #include <net/icmp.h> #include <net/rtnetlink.h> |