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