X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fplanetlab.c;h=2abd7336a98cc96144df13e8d25e43f1a5e121fa;hb=ae5703a7a7572b2616a9fee7a774d46d498e649a;hp=689ced40aea54b736e7384f67f70be641cc7800c;hpb=8d0288fbe38bb3db50d577ae4a532c6b512bb9aa;p=util-vserver-pl.git diff --git a/src/planetlab.c b/src/planetlab.c index 689ced4..2abd733 100644 --- a/src/planetlab.c +++ b/src/planetlab.c @@ -44,6 +44,8 @@ POSSIBILITY OF SUCH DAMAGE. #include #include #include +#define _GNU_SOURCE +#include #include "vserver.h" #include "planetlab.h" @@ -100,7 +102,7 @@ process: unshare_mask = get_space_flag(ctx); if (unshare_mask != 0) { sys_unshare(unshare_mask); - vc_set_namespace(ctx, unshare_mask | vc_get_space_mask()); + vc_set_namespace(ctx, unshare_mask); } /* Set capabilities - these don't take effect until SETUP flag is unset */ @@ -188,6 +190,12 @@ pl_chcontext(xid_t ctx, uint64_t bcaps, const struct sliver_resources *slr) migrate: if (net_migrated || !vc_net_migrate(ctx)) { + /* Unshare the net namespace if the slice if requested in the local slice configuration */ + unshare_mask = get_space_flag(ctx); + if (unshare_mask != 0) { + vc_enter_namespace(ctx, unshare_mask); + } + if (!vc_tag_migrate(ctx) && !vc_ctx_migrate(ctx, 0)) break; /* done */ net_migrated = 1;