Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / net / netns / packet.h
blob637daf698884f8c8df81e5b149904b2f258258da
1 /*
2 * Packet network namespace
3 */
4 #ifndef __NETNS_PACKET_H__
5 #define __NETNS_PACKET_H__
7 #include <linux/list.h>
8 #include <linux/spinlock.h>
10 struct netns_packet {
11 rwlock_t sklist_lock;
12 struct hlist_head sklist;
15 #endif /* __NETNS_PACKET_H__ */