diff options
| author | Eric W. Biederman <[email protected]> | 2010-03-08 02:43:27 +0000 |
|---|---|---|
| committer | Eric W. Biederman <[email protected]> | 2011-05-10 21:35:35 +0000 |
| commit | 34482e89a5218f0f9317abf1cfba3bb38b5c29dd (patch) | |
| tree | 94a2c2409fbbef8a01aae589469ee44180e6e04f /fs/proc/namespaces.c | |
| parent | ns proc: Add support for the network namespace. (diff) | |
| download | kernel-34482e89a5218f0f9317abf1cfba3bb38b5c29dd.tar.gz kernel-34482e89a5218f0f9317abf1cfba3bb38b5c29dd.zip | |
ns proc: Add support for the uts namespace
Acked-by: Daniel Lezcano <[email protected]>
Signed-off-by: Eric W. Biederman <[email protected]>
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 = { |
