The patch titled ipc namespace: unshare fix has been added to the -mm tree. Its filename is ipc-namespace-core-unshare-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ipc namespace: unshare fix From: Cedric Le Goater <clg@xxxxxxxxxx> small fix for unshare of ipc namespace Signed-off-by: Cedric Le Goater <clg@xxxxxxxxxx> Cc: Pavel Emelianov <xemul@xxxxxxxxxx> Cc: Kirill Korotaev <dev@xxxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/fork.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/fork.c~ipc-namespace-core-unshare-fix kernel/fork.c --- a/kernel/fork.c~ipc-namespace-core-unshare-fix +++ a/kernel/fork.c @@ -1577,7 +1577,8 @@ asmlinkage long sys_unshare(unsigned lon /* Return -EINVAL for all unsupported flags */ err = -EINVAL; if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND| - CLONE_VM|CLONE_FILES|CLONE_SYSVSEM|CLONE_NEWUTS)) + CLONE_VM|CLONE_FILES|CLONE_SYSVSEM| + CLONE_NEWUTS|CLONE_NEWIPC)) goto bad_unshare_out; if ((err = unshare_thread(unshare_flags))) _ Patches currently in -mm which might be from clg@xxxxxxxxxx are add-__iowrite64_copy-s390-fix.patch namespaces-utsname-switch-to-using-uts-namespaces-cleanup.patch ipc-namespace-core-unshare-fix.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