diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-01-20 15:00:38 -0500 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-01-20 15:00:38 -0500 |
commit | bced94ed5efad836859d9426f37f48d46218e99a (patch) | |
tree | 3e97c08c815faf8391517e2fc7ee74170145972c /net/ipv6 | |
parent | 2f1e3176723d74ea2dd975e5be0ef6bb4fed2e2e (diff) |
netfilter: add a missing include in nf_conntrack_reasm.c
After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is
disabled but tproxy is enabled) we have following warnings :
net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol
'nf_ct_frag6_gather' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol
'nf_ct_frag6_output' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol
'nf_ct_frag6_init' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol
'nf_ct_frag6_cleanup' was not declared. Should it be static?
Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
CC: KOVACS Krisztian <hidden@balabit.hu>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_reasm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index 66e003e1fcd5..085727263812 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <linux/netfilter_ipv6.h> | 45 | #include <linux/netfilter_ipv6.h> |
46 | #include <linux/kernel.h> | 46 | #include <linux/kernel.h> |
47 | #include <linux/module.h> | 47 | #include <linux/module.h> |
48 | #include <net/netfilter/ipv6/nf_defrag_ipv6.h> | ||
48 | 49 | ||
49 | 50 | ||
50 | struct nf_ct_frag6_skb_cb | 51 | struct nf_ct_frag6_skb_cb |