From 8d0288fbe38bb3db50d577ae4a532c6b512bb9aa Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Mon, 6 Oct 2008 22:22:53 +0000 Subject: [PATCH] call vc_set_namespace after sys_unshare, to poke the new nsproxy into the relevant context in the kernel. --- src/planetlab.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ -- 2.43.0