blob: b767683f112b86999c061c0de8e22b310db88e51 [file] [log] [blame]
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +02001#ifndef __NETNS_CONNTRACK_H
2#define __NETNS_CONNTRACK_H
3
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02004#include <asm/atomic.h>
5
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +02006struct netns_ct {
Alexey Dobriyan49ac8712008-10-08 11:35:03 +02007 atomic_t count;
Alexey Dobriyan400dad32008-10-08 11:35:03 +02008 struct hlist_head *hash;
9 int hash_vmalloc;
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +020010};
11#endif