diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2010-03-07 18:43:27 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2011-05-10 14:35:35 -0700 |
commit | 34482e89a5218f0f9317abf1cfba3bb38b5c29dd (patch) | |
tree | 94a2c2409fbbef8a01aae589469ee44180e6e04f /fs/proc/namespaces.c | |
parent | 13b6f57623bc485e116344fe91fbcb29f149242b (diff) | |
download | linux-34482e89a5218f0f9317abf1cfba3bb38b5c29dd.tar.bz2 |
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/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 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[] = { #ifdef CONFIG_NET_NS &netns_operations, #endif +#ifdef CONFIG_UTS_NS + &utsns_operations, +#endif }; static const struct file_operations ns_file_operations = { |