diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/netfilter/nf_conntrack_core.h | 1 | ||||
-rw-r--r-- | include/net/netns/conntrack.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_conntrack_core.h b/include/net/netfilter/nf_conntrack_core.h index 1c373564396a..b4b45c541da6 100644 --- a/include/net/netfilter/nf_conntrack_core.h +++ b/include/net/netfilter/nf_conntrack_core.h | |||
@@ -72,6 +72,5 @@ print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple, | |||
72 | const struct nf_conntrack_l4proto *proto); | 72 | const struct nf_conntrack_l4proto *proto); |
73 | 73 | ||
74 | extern spinlock_t nf_conntrack_lock ; | 74 | extern spinlock_t nf_conntrack_lock ; |
75 | extern struct hlist_head unconfirmed; | ||
76 | 75 | ||
77 | #endif /* _NF_CONNTRACK_CORE_H */ | 76 | #endif /* _NF_CONNTRACK_CORE_H */ |
diff --git a/include/net/netns/conntrack.h b/include/net/netns/conntrack.h index e453a33f3e93..6ddf58e142a9 100644 --- a/include/net/netns/conntrack.h +++ b/include/net/netns/conntrack.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef __NETNS_CONNTRACK_H | 1 | #ifndef __NETNS_CONNTRACK_H |
2 | #define __NETNS_CONNTRACK_H | 2 | #define __NETNS_CONNTRACK_H |
3 | 3 | ||
4 | #include <linux/list.h> | ||
4 | #include <asm/atomic.h> | 5 | #include <asm/atomic.h> |
5 | 6 | ||
6 | struct netns_ct { | 7 | struct netns_ct { |
@@ -8,6 +9,7 @@ struct netns_ct { | |||
8 | unsigned int expect_count; | 9 | unsigned int expect_count; |
9 | struct hlist_head *hash; | 10 | struct hlist_head *hash; |
10 | struct hlist_head *expect_hash; | 11 | struct hlist_head *expect_hash; |
12 | struct hlist_head unconfirmed; | ||
11 | int hash_vmalloc; | 13 | int hash_vmalloc; |
12 | int expect_vmalloc; | 14 | int expect_vmalloc; |
13 | }; | 15 | }; |