]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/net/netns/conntrack.h
netfilter: netns nf_conntrack: per-netns expectations
[karo-tx-linux.git] / include / net / netns / conntrack.h
1 #ifndef __NETNS_CONNTRACK_H
2 #define __NETNS_CONNTRACK_H
3
4 #include <asm/atomic.h>
5
6 struct netns_ct {
7         atomic_t                count;
8         unsigned int            expect_count;
9         struct hlist_head       *hash;
10         struct hlist_head       *expect_hash;
11         int                     hash_vmalloc;
12         int                     expect_vmalloc;
13 };
14 #endif