Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14-rc7 13 lines 237 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __NETNS_XDP_H__ 3#define __NETNS_XDP_H__ 4 5#include <linux/mutex.h> 6#include <linux/types.h> 7 8struct netns_xdp { 9 struct mutex lock; 10 struct hlist_head list; 11}; 12 13#endif /* __NETNS_XDP_H__ */