Nicholas Flintham | 1e3d311 | 2013-04-10 10:48:38 +0100 | [diff] [blame^] | 1 | #ifndef __NETNS_PACKET_H__ |
2 | #define __NETNS_PACKET_H__ | ||||
3 | |||||
4 | #include <linux/rculist.h> | ||||
5 | #include <linux/spinlock.h> | ||||
6 | |||||
7 | struct netns_packet { | ||||
8 | spinlock_t sklist_lock; | ||||
9 | struct hlist_head sklist; | ||||
10 | }; | ||||
11 | |||||
12 | #endif |