]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/net/netns/packet.h
Merge tag 'upstream-3.18-rc1-v2' of git://git.infradead.org/linux-ubifs
[mirror_ubuntu-artful-kernel.git] / include / net / netns / packet.h
1 /*
2 * Packet network namespace
3 */
4 #ifndef __NETNS_PACKET_H__
5 #define __NETNS_PACKET_H__
6
7 #include <linux/rculist.h>
8 #include <linux/mutex.h>
9
10 struct netns_packet {
11 struct mutex sklist_lock;
12 struct hlist_head sklist;
13 };
14
15 #endif /* __NETNS_PACKET_H__ */