Merge tag 'stable/for-linus-3.7-rc0-tag' of git://git.kernel.org/pub/scm/linux/kernel...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / net / netns / packet.h
CommitLineData
2aaef4e4
DL
1/*
2 * Packet network namespace
3 */
4#ifndef __NETNS_PACKET_H__
5#define __NETNS_PACKET_H__
6
808f5114 7#include <linux/rculist.h>
f63c45e0 8#include <linux/mutex.h>
2aaef4e4
DL
9
10struct netns_packet {
0fa7fa98 11 struct mutex sklist_lock;
2aaef4e4
DL
12 struct hlist_head sklist;
13};
14
15#endif /* __NETNS_PACKET_H__ */