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