]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/net/netns/conntrack.h
6ddf58e142a94aac6da4f465c6960b9c88480469
[linux-2.6-omap-h63xx.git] / include / net / netns / conntrack.h
1 #ifndef __NETNS_CONNTRACK_H
2 #define __NETNS_CONNTRACK_H
3
4 #include <linux/list.h>
5 #include <asm/atomic.h>
6
7 struct netns_ct {
8         atomic_t                count;
9         unsigned int            expect_count;
10         struct hlist_head       *hash;
11         struct hlist_head       *expect_hash;
12         struct hlist_head       unconfirmed;
13         int                     hash_vmalloc;
14         int                     expect_vmalloc;
15 };
16 #endif