diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-03-07 21:43:27 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-05-10 17:35:35 -0400 |
commit | 34482e89a5218f0f9317abf1cfba3bb38b5c29dd (patch) | |
tree | 94a2c2409fbbef8a01aae589469ee44180e6e04f /fs/proc | |
parent | 13b6f57623bc485e116344fe91fbcb29f149242b (diff) |
ns proc: Add support for the uts namespace
Acked-by: Daniel Lezcano <daniel.lezcano@free.fr>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'fs/proc')
-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 dcbd483e9915..b017181f1273 100644 --- a/fs/proc/namespaces.c +++ b/fs/proc/namespaces.c | |||
@@ -19,6 +19,9 @@ static const struct proc_ns_operations *ns_entries[] = { | |||
19 | #ifdef CONFIG_NET_NS | 19 | #ifdef CONFIG_NET_NS |
20 | &netns_operations, | 20 | &netns_operations, |
21 | #endif | 21 | #endif |
22 | #ifdef CONFIG_UTS_NS | ||
23 | &utsns_operations, | ||
24 | #endif | ||
22 | }; | 25 | }; |
23 | 26 | ||
24 | static const struct file_operations ns_file_operations = { | 27 | static const struct file_operations ns_file_operations = { |