packet.h 256 B

12345678910111213141516
  1. /*
  2. * Packet network namespace
  3. */
  4. #ifndef __NETNS_PACKET_H__
  5. #define __NETNS_PACKET_H__
  6. #include <linux/rculist.h>
  7. #include <linux/mutex.h>
  8. struct netns_packet {
  9. struct mutex sklist_lock;
  10. struct hlist_head sklist;
  11. };
  12. #endif /* __NETNS_PACKET_H__ */