aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/netns/conntrack.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/netns/conntrack.h b/include/net/netns/conntrack.h
index fc0a46d64cc9..2b50758df6a1 100644
--- a/include/net/netns/conntrack.h
+++ b/include/net/netns/conntrack.h
@@ -4,6 +4,7 @@
4#include <linux/list.h> 4#include <linux/list.h>
5#include <asm/atomic.h> 5#include <asm/atomic.h>
6 6
7struct ctl_table_header;
7struct nf_conntrack_ecache; 8struct nf_conntrack_ecache;
8 9
9struct netns_ct { 10struct netns_ct {
@@ -16,6 +17,9 @@ struct netns_ct {
16#ifdef CONFIG_NF_CONNTRACK_EVENTS 17#ifdef CONFIG_NF_CONNTRACK_EVENTS
17 struct nf_conntrack_ecache *ecache; 18 struct nf_conntrack_ecache *ecache;
18#endif 19#endif
20#ifdef CONFIG_SYSCTL
21 struct ctl_table_header *sysctl_header;
22#endif
19 int hash_vmalloc; 23 int hash_vmalloc;
20 int expect_vmalloc; 24 int expect_vmalloc;
21}; 25};