Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __NETNS_XDP_H__
0003 #define __NETNS_XDP_H__
0004 
0005 #include <linux/rculist.h>
0006 #include <linux/mutex.h>
0007 
0008 struct netns_xdp {
0009     struct mutex        lock;
0010     struct hlist_head   list;
0011 };
0012 
0013 #endif /* __NETNS_XDP_H__ */