]> Git Repo - linux.git/commit
fix create_new_namespaces() return value
authorCedric Le Goater <[email protected]>
Mon, 16 Jul 2007 06:41:06 +0000 (23:41 -0700)
committerLinus Torvalds <[email protected]>
Mon, 16 Jul 2007 16:05:47 +0000 (09:05 -0700)
commit467e9f4b5086a60a5cb2e032ccaf4a31abadc4c2
treef21b3975db312e4cdee1d9d3622549de2648b7ff
parent3e733f071e16bdad13a75eedb102e8941b09927e
fix create_new_namespaces() return value

dup_mnt_ns() and clone_uts_ns() return NULL on failure.  This is wrong,
create_new_namespaces() uses ERR_PTR() to catch an error.  This means that the
subsequent create_new_namespaces() will hit BUG_ON() in copy_mnt_ns() or
copy_utsname().

Modify create_new_namespaces() to also use the errors returned by the
copy_*_ns routines and not to systematically return ENOMEM.

[[email protected]: better changelog]
Signed-off-by: Cedric Le Goater <[email protected]>
Cc: Serge E. Hallyn <[email protected]>
Cc: Badari Pulavarty <[email protected]>
Cc: Pavel Emelianov <[email protected]>
Cc: Herbert Poetzl <[email protected]>
Cc: Eric W. Biederman <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/namespace.c
kernel/nsproxy.c
kernel/user_namespace.c
kernel/utsname.c
This page took 0.046281 seconds and 4 git commands to generate.