2007-12-11 12:19:54 +00:00
|
|
|
/*
|
|
|
|
* Packet network namespace
|
|
|
|
*/
|
|
|
|
#ifndef __NETNS_PACKET_H__
|
|
|
|
#define __NETNS_PACKET_H__
|
|
|
|
|
2010-02-22 07:57:18 +00:00
|
|
|
#include <linux/rculist.h>
|
2012-08-23 02:55:41 +00:00
|
|
|
#include <linux/mutex.h>
|
2007-12-11 12:19:54 +00:00
|
|
|
|
|
|
|
struct netns_packet {
|
2012-08-21 01:06:47 +00:00
|
|
|
struct mutex sklist_lock;
|
2007-12-11 12:19:54 +00:00
|
|
|
struct hlist_head sklist;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __NETNS_PACKET_H__ */
|