diff options
author | Daniel Rosenberg <drosen@google.com> | 2015-07-21 15:17:26 -0700 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2016-03-11 16:09:01 +0100 |
commit | 46d3e274ee669a0bc574dcaff2da19a876b2423f (patch) | |
tree | 12c9462caca726d9d46fba654d593dfa236210d8 | |
parent | d67359715ec7e41398e64624ddeb1ba1bb0061de (diff) | |
download | kernel_samsung_espresso10-46d3e274ee669a0bc574dcaff2da19a876b2423f.zip kernel_samsung_espresso10-46d3e274ee669a0bc574dcaff2da19a876b2423f.tar.gz kernel_samsung_espresso10-46d3e274ee669a0bc574dcaff2da19a876b2423f.tar.bz2 |
Fix incorrect conflict resolution in "vfs: Add setns support for the mount namespace"
-rw-r--r-- | fs/proc/namespaces.c | 3 | ||||
-rw-r--r-- | include/linux/proc_fs.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c index 70a62c0..05051ef 100644 --- a/fs/proc/namespaces.c +++ b/fs/proc/namespaces.c @@ -25,9 +25,6 @@ static const struct proc_ns_operations *ns_entries[] = { #ifdef CONFIG_IPC_NS &ipcns_operations, #endif -#ifdef CONFIG_PID_NS - &pidns_operations, -#endif &mntns_operations, }; diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 3accff7..06e4539 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -272,7 +272,6 @@ struct proc_ns_operations { extern const struct proc_ns_operations netns_operations; extern const struct proc_ns_operations utsns_operations; extern const struct proc_ns_operations ipcns_operations; -extern const struct proc_ns_operations pidns_operations; extern const struct proc_ns_operations mntns_operations; union proc_op { |