diff options
Diffstat (limited to 'kernel/include/net/netns/packet.h')
-rw-r--r-- | kernel/include/net/netns/packet.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/kernel/include/net/netns/packet.h b/kernel/include/net/netns/packet.h new file mode 100644 index 000000000..17ec2b95c --- /dev/null +++ b/kernel/include/net/netns/packet.h @@ -0,0 +1,15 @@ +/* + * Packet network namespace + */ +#ifndef __NETNS_PACKET_H__ +#define __NETNS_PACKET_H__ + +#include <linux/rculist.h> +#include <linux/mutex.h> + +struct netns_packet { + struct mutex sklist_lock; + struct hlist_head sklist; +}; + +#endif /* __NETNS_PACKET_H__ */ |