The patch titled ipc namespace: remove CONFIG_IPC_NS has been removed from the -mm tree. Its filename was ipc-namespace-remove-config_ipc_ns.patch This patch was dropped because it was folded into uts-namespace-remove-config_uts_ns.patch ------------------------------------------------------ Subject: ipc namespace: remove CONFIG_IPC_NS From: Cedric Le Goater <clg@xxxxxxxxxx> CONFIG_IPC_NS has very little value as it only deactivates the unshare of the ipc namespace and does not improve performance. Signed-off-by: Cedric Le Goater <clg@xxxxxxxxxx> Acked-by: "Serge E. Hallyn" <serue@xxxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Cc: Herbert Poetzl <herbert@xxxxxxxxxxxx> Cc: Pavel Emelianov <xemul@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/ipc.h | 11 ----------- init/Kconfig | 9 --------- ipc/msg.c | 4 +--- ipc/sem.c | 4 +--- ipc/shm.c | 4 +--- ipc/util.c | 4 +--- ipc/util.h | 8 ++------ kernel/fork.c | 10 ---------- 8 files changed, 6 insertions(+), 48 deletions(-) diff -puN include/linux/ipc.h~ipc-namespace-remove-config_ipc_ns include/linux/ipc.h --- a/include/linux/ipc.h~ipc-namespace-remove-config_ipc_ns +++ a/include/linux/ipc.h @@ -96,31 +96,20 @@ extern struct ipc_namespace init_ipc_ns; #define INIT_IPC_NS(ns) #endif -#ifdef CONFIG_IPC_NS extern void free_ipc_ns(struct kref *kref); extern int copy_ipcs(unsigned long flags, struct task_struct *tsk); extern int unshare_ipcs(unsigned long flags, struct ipc_namespace **ns); -#else -static inline int copy_ipcs(unsigned long flags, struct task_struct *tsk) -{ - return 0; -} -#endif static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns) { -#ifdef CONFIG_IPC_NS if (ns) kref_get(&ns->kref); -#endif return ns; } static inline void put_ipc_ns(struct ipc_namespace *ns) { -#ifdef CONFIG_IPC_NS kref_put(&ns->kref, free_ipc_ns); -#endif } #endif /* __KERNEL__ */ diff -puN init/Kconfig~ipc-namespace-remove-config_ipc_ns init/Kconfig --- a/init/Kconfig~ipc-namespace-remove-config_ipc_ns +++ a/init/Kconfig @@ -138,15 +138,6 @@ config SYSVIPC section 6.4 of the Linux Programmer's Guide, available from <http://www.tldp.org/guides.html>. -config IPC_NS - bool "IPC Namespaces" - depends on SYSVIPC - default n - help - Support ipc namespaces. This allows containers, i.e. virtual - environments, to use ipc namespaces to provide different ipc - objects for different servers. If unsure, say N. - config POSIX_MQUEUE bool "POSIX Message Queues" depends on NET && EXPERIMENTAL diff -puN ipc/msg.c~ipc-namespace-remove-config_ipc_ns ipc/msg.c --- a/ipc/msg.c~ipc-namespace-remove-config_ipc_ns +++ a/ipc/msg.c @@ -87,7 +87,7 @@ static int newque (struct ipc_namespace static int sysvipc_msg_proc_show(struct seq_file *s, void *it); #endif -static void __ipc_init __msg_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) +static void __msg_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) { ns->ids[IPC_MSG_IDS] = ids; ns->msg_ctlmax = MSGMAX; @@ -96,7 +96,6 @@ static void __ipc_init __msg_init_ns(str ipc_init_ids(ids, ns->msg_ctlmni); } -#ifdef CONFIG_IPC_NS int msg_init_ns(struct ipc_namespace *ns) { struct ipc_ids *ids; @@ -128,7 +127,6 @@ void msg_exit_ns(struct ipc_namespace *n kfree(ns->ids[IPC_MSG_IDS]); ns->ids[IPC_MSG_IDS] = NULL; } -#endif void __init msg_init(void) { diff -puN ipc/sem.c~ipc-namespace-remove-config_ipc_ns ipc/sem.c --- a/ipc/sem.c~ipc-namespace-remove-config_ipc_ns +++ a/ipc/sem.c @@ -122,7 +122,7 @@ static int sysvipc_sem_proc_show(struct #define sc_semopm sem_ctls[2] #define sc_semmni sem_ctls[3] -static void __ipc_init __sem_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) +static void __sem_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) { ns->ids[IPC_SEM_IDS] = ids; ns->sc_semmsl = SEMMSL; @@ -133,7 +133,6 @@ static void __ipc_init __sem_init_ns(str ipc_init_ids(ids, ns->sc_semmni); } -#ifdef CONFIG_IPC_NS int sem_init_ns(struct ipc_namespace *ns) { struct ipc_ids *ids; @@ -165,7 +164,6 @@ void sem_exit_ns(struct ipc_namespace *n kfree(ns->ids[IPC_SEM_IDS]); ns->ids[IPC_SEM_IDS] = NULL; } -#endif void __init sem_init (void) { diff -puN ipc/shm.c~ipc-namespace-remove-config_ipc_ns ipc/shm.c --- a/ipc/shm.c~ipc-namespace-remove-config_ipc_ns +++ a/ipc/shm.c @@ -67,7 +67,7 @@ static void shm_destroy (struct ipc_name static int sysvipc_shm_proc_show(struct seq_file *s, void *it); #endif -static void __ipc_init __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) +static void __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) { ns->ids[IPC_SHM_IDS] = ids; ns->shm_ctlmax = SHMMAX; @@ -88,7 +88,6 @@ static void do_shm_rmid(struct ipc_names shm_destroy(ns, shp); } -#ifdef CONFIG_IPC_NS int shm_init_ns(struct ipc_namespace *ns) { struct ipc_ids *ids; @@ -120,7 +119,6 @@ void shm_exit_ns(struct ipc_namespace *n kfree(ns->ids[IPC_SHM_IDS]); ns->ids[IPC_SHM_IDS] = NULL; } -#endif void __init shm_init (void) { diff -puN ipc/util.c~ipc-namespace-remove-config_ipc_ns ipc/util.c --- a/ipc/util.c~ipc-namespace-remove-config_ipc_ns +++ a/ipc/util.c @@ -51,7 +51,6 @@ struct ipc_namespace init_ipc_ns = { }, }; -#ifdef CONFIG_IPC_NS static struct ipc_namespace *clone_ipc_ns(struct ipc_namespace *old_ns) { int err; @@ -144,7 +143,6 @@ void free_ipc_ns(struct kref *kref) shm_exit_ns(ns); kfree(ns); } -#endif /** * ipc_init - initialise IPC subsystem @@ -172,7 +170,7 @@ __initcall(ipc_init); * array itself. */ -void __ipc_init ipc_init_ids(struct ipc_ids* ids, int size) +void ipc_init_ids(struct ipc_ids* ids, int size) { int i; diff -puN ipc/util.h~ipc-namespace-remove-config_ipc_ns ipc/util.h --- a/ipc/util.h~ipc-namespace-remove-config_ipc_ns +++ a/ipc/util.h @@ -41,12 +41,8 @@ struct ipc_ids { }; struct seq_file; -#ifdef CONFIG_IPC_NS -#define __ipc_init -#else -#define __ipc_init __init -#endif -void __ipc_init ipc_init_ids(struct ipc_ids *ids, int size); + +void ipc_init_ids(struct ipc_ids *ids, int size); #ifdef CONFIG_PROC_FS void __init ipc_init_proc_interface(const char *path, const char *header, int ids, int (*show)(struct seq_file *, void *)); diff -puN kernel/fork.c~ipc-namespace-remove-config_ipc_ns kernel/fork.c --- a/kernel/fork.c~ipc-namespace-remove-config_ipc_ns +++ a/kernel/fork.c @@ -1598,16 +1598,6 @@ static int unshare_semundo(unsigned long return 0; } -#ifndef CONFIG_IPC_NS -static inline int unshare_ipcs(unsigned long flags, struct ipc_namespace **ns) -{ - if (flags & CLONE_NEWIPC) - return -EINVAL; - - return 0; -} -#endif - /* * unshare allows a process to 'unshare' part of the process * context which was originally shared using clone. copy_* _ Patches currently in -mm which might be from clg@xxxxxxxxxx are kthread-api-conversion-for-dvb_frontend-and-av7110.patch mxser-remove-useless-fields.patch nsproxy-externalizes-exit_task_namespaces.patch user-namespace-add-the-framework.patch rename-attach_pid-to-find_attach_pid.patch attach_pid-with-struct-pid-parameter.patch remove-find_attach_pid.patch statically-initialize-struct-pid-for-swapper.patch explicitly-set-pgid-sid-of-init.patch uts-namespace-remove-config_uts_ns.patch ipc-namespace-remove-config_ipc_ns.patch ipc-namespace-remove-config_ipc_ns-linkage-fix.patch ipc-namespace-remove-config_ipc_ns-linkage-fix-fix.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html