blob: 6823c8c2ee7e2a8079b24a1e2aaac34d8b626aef [file] [log] [blame]
Nicholas Flintham1e3d3112013-04-10 10:48:38 +01001#ifndef __NETNS_PACKET_H__
2#define __NETNS_PACKET_H__
3
4#include <linux/rculist.h>
5#include <linux/spinlock.h>
6
7struct netns_packet {
8 spinlock_t sklist_lock;
9 struct hlist_head sklist;
10};
11
12#endif