aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/namespaces.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2010-03-07 18:14:23 -0800
committerEric W. Biederman <ebiederm@xmission.com>2011-05-10 14:34:26 -0700
commit13b6f57623bc485e116344fe91fbcb29f149242b (patch)
treef2d43576e248ac61b967734a6ccd313b971fb430 /fs/proc/namespaces.c
parentns: Introduce the setns syscall (diff)
downloadlinux-dev-13b6f57623bc485e116344fe91fbcb29f149242b.tar.xz
linux-dev-13b6f57623bc485e116344fe91fbcb29f149242b.zip
ns proc: Add support for the network namespace.
Implementing file descriptors for the network namespace is simple and straight forward. Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Daniel Lezcano <daniel.lezcano@free.fr> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to '')
-rw-r--r--fs/proc/namespaces.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c
index 6ae9f07d59ee..dcbd483e9915 100644
--- a/fs/proc/namespaces.c
+++ b/fs/proc/namespaces.c
@@ -16,6 +16,9 @@
static const struct proc_ns_operations *ns_entries[] = {
+#ifdef CONFIG_NET_NS
+ &netns_operations,
+#endif
};
static const struct file_operations ns_file_operations = {