]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/net/netns/conntrack.h
e453a33f3e93501fce1b1067791d2fb107c685f6
[linux-2.6-omap-h63xx.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