Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Packet network namespace
0004  */
0005 #ifndef __NETNS_PACKET_H__
0006 #define __NETNS_PACKET_H__
0007 
0008 #include <linux/rculist.h>
0009 #include <linux/mutex.h>
0010 
0011 struct netns_packet {
0012     struct mutex        sklist_lock;
0013     struct hlist_head   sklist;
0014 };
0015 
0016 #endif /* __NETNS_PACKET_H__ */