diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-03-07 21:14:23 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-05-10 17:34:26 -0400 |
commit | 13b6f57623bc485e116344fe91fbcb29f149242b (patch) | |
tree | f2d43576e248ac61b967734a6ccd313b971fb430 /fs/proc/namespaces.c | |
parent | 0663c6f8fa37d777ede74ff991a0cba3a42fcbd7 (diff) |
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 'fs/proc/namespaces.c')
-rw-r--r-- | fs/proc/namespaces.c | 3 |
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 @@ | |||
16 | 16 | ||
17 | 17 | ||
18 | static const struct proc_ns_operations *ns_entries[] = { | 18 | static const struct proc_ns_operations *ns_entries[] = { |
19 | #ifdef CONFIG_NET_NS | ||
20 | &netns_operations, | ||
21 | #endif | ||
19 | }; | 22 | }; |
20 | 23 | ||
21 | static const struct file_operations ns_file_operations = { | 24 | static const struct file_operations ns_file_operations = { |