diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_reasm.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index 022da6ce4c0f..2a0d698b24d5 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <net/rawv6.h> | 39 | #include <net/rawv6.h> |
40 | #include <net/ndisc.h> | 40 | #include <net/ndisc.h> |
41 | #include <net/addrconf.h> | 41 | #include <net/addrconf.h> |
42 | #include <net/netfilter/ipv6/nf_conntrack_ipv6.h> | ||
42 | #include <linux/sysctl.h> | 43 | #include <linux/sysctl.h> |
43 | #include <linux/netfilter.h> | 44 | #include <linux/netfilter.h> |
44 | #include <linux/netfilter_ipv6.h> | 45 | #include <linux/netfilter_ipv6.h> |
@@ -680,21 +681,6 @@ void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb, | |||
680 | nf_conntrack_put_reasm(skb); | 681 | nf_conntrack_put_reasm(skb); |
681 | } | 682 | } |
682 | 683 | ||
683 | int nf_ct_frag6_kfree_frags(struct sk_buff *skb) | ||
684 | { | ||
685 | struct sk_buff *s, *s2; | ||
686 | |||
687 | for (s = NFCT_FRAG6_CB(skb)->orig; s; s = s2) { | ||
688 | |||
689 | s2 = s->next; | ||
690 | kfree_skb(s); | ||
691 | } | ||
692 | |||
693 | kfree_skb(skb); | ||
694 | |||
695 | return 0; | ||
696 | } | ||
697 | |||
698 | int nf_ct_frag6_init(void) | 684 | int nf_ct_frag6_init(void) |
699 | { | 685 | { |
700 | nf_frags.hashfn = nf_hashfn; | 686 | nf_frags.hashfn = nf_hashfn; |