mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
63c9a26264
What is confirmed connection in one netns can very well be unconfirmed in another one. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
17 lines
316 B
C
17 lines
316 B
C
#ifndef __NETNS_CONNTRACK_H
|
|
#define __NETNS_CONNTRACK_H
|
|
|
|
#include <linux/list.h>
|
|
#include <asm/atomic.h>
|
|
|
|
struct netns_ct {
|
|
atomic_t count;
|
|
unsigned int expect_count;
|
|
struct hlist_head *hash;
|
|
struct hlist_head *expect_hash;
|
|
struct hlist_head unconfirmed;
|
|
int hash_vmalloc;
|
|
int expect_vmalloc;
|
|
};
|
|
#endif
|