aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/net_namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/net_namespace.h')
-rw-r--r--include/net/net_namespace.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h
index d943fd4eaba5..18da0af6192f 100644
--- a/include/net/net_namespace.h
+++ b/include/net/net_namespace.h
@@ -9,6 +9,7 @@
9#include <linux/list.h> 9#include <linux/list.h>
10 10
11#include <net/netns/unix.h> 11#include <net/netns/unix.h>
12#include <net/netns/packet.h>
12 13
13struct proc_dir_entry; 14struct proc_dir_entry;
14struct net_device; 15struct net_device;
@@ -43,10 +44,7 @@ struct net {
43 struct ctl_table_header *sysctl_core_hdr; 44 struct ctl_table_header *sysctl_core_hdr;
44 int sysctl_somaxconn; 45 int sysctl_somaxconn;
45 46
46 /* List of all packet sockets. */ 47 struct netns_packet packet;
47 rwlock_t packet_sklist_lock;
48 struct hlist_head packet_sklist;
49
50 struct netns_unix unx; 48 struct netns_unix unx;
51}; 49};
52 50