xdp.h 239 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NETNS_XDP_H__
  3. #define __NETNS_XDP_H__
  4. #include <linux/rculist.h>
  5. #include <linux/mutex.h>
  6. struct netns_xdp {
  7. struct mutex lock;
  8. struct hlist_head list;
  9. };
  10. #endif /* __NETNS_XDP_H__ */