xref: /linux/include/net/netns/packet.h (revision f6953f1f9ec4ad68651d7c677f0c065cb4c1edf7)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Packet network namespace
4  */
5 #ifndef __NETNS_PACKET_H__
6 #define __NETNS_PACKET_H__
7 
8 #include <linux/rculist.h>
9 #include <linux/mutex.h>
10 
11 struct netns_packet {
12 	struct mutex		sklist_lock;
13 	struct hlist_head	sklist;
14 };
15 
16 #endif /* __NETNS_PACKET_H__ */
17