diff options
author | Eric Dumazet <edumazet@google.com> | 2016-08-18 16:59:12 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-20 00:06:58 (GMT) |
commit | 217375a0c677d2e885cb05f767af34467399b424 (patch) | |
tree | 222b350063fca0f7915a4bc9cab1d8700df07081 | |
parent | b6c6b645d29158acb41d6fb2031b289d4f0fc936 (diff) | |
download | linux-217375a0c677d2e885cb05f767af34467399b424.tar.xz |
udp: include addrconf.h
Include ipv4_rcv_saddr_equal() definition to avoid this sparse error :
net/ipv4/udp.c:362:5: warning: symbol 'ipv4_rcv_saddr_equal' was not
declared. Should it be static?
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/udp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index e61f7cd..8f5f7f6 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -114,6 +114,7 @@ #include <net/busy_poll.h> #include "udp_impl.h" #include <net/sock_reuseport.h> +#include <net/addrconf.h> struct udp_table udp_table __read_mostly; EXPORT_SYMBOL(udp_table); |