18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef __NETNS_XDP_H__ 38c2ecf20Sopenharmony_ci#define __NETNS_XDP_H__ 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#include <linux/rculist.h> 68c2ecf20Sopenharmony_ci#include <linux/mutex.h> 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_cistruct netns_xdp { 98c2ecf20Sopenharmony_ci struct mutex lock; 108c2ecf20Sopenharmony_ci struct hlist_head list; 118c2ecf20Sopenharmony_ci}; 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci#endif /* __NETNS_XDP_H__ */ 14