blob: 6823c8c2ee7e2a8079b24a1e2aaac34d8b626aef [file] [log] [blame]
#ifndef __NETNS_PACKET_H__
#define __NETNS_PACKET_H__
#include <linux/rculist.h>
#include <linux/spinlock.h>
struct netns_packet {
spinlock_t sklist_lock;
struct hlist_head sklist;
};
#endif