From: Sapan Bhatia Date: Mon, 6 Oct 2008 22:22:53 +0000 (+0000) Subject: call vc_set_namespace after sys_unshare, to poke the new nsproxy into the relevant... X-Git-Tag: util-vserver-pl-0.3-15~19 X-Git-Url: http://git.onelab.eu/?p=util-vserver-pl.git;a=commitdiff_plain;h=8d0288fbe38bb3db50d577ae4a532c6b512bb9aa call vc_set_namespace after sys_unshare, to poke the new nsproxy into the relevant context in the kernel. --- diff --git a/src/planetlab.c b/src/planetlab.c index 824039b..689ced4 100644 --- a/src/planetlab.c +++ b/src/planetlab.c @@ -96,10 +96,11 @@ process: if (vc_ctx_create(ctx, 0) == VC_NOCTX) return -1; - /* Unshare the NET namespace if the slice if requested in the local slice configuration */ + /* Unshare the net namespace if the slice if requested in the local slice configuration */ unshare_mask = get_space_flag(ctx); if (unshare_mask != 0) { sys_unshare(unshare_mask); + vc_set_namespace(ctx, unshare_mask | vc_get_space_mask()); } /* Set capabilities - these don't take effect until SETUP flag is unset */