From c0585278d02557d725f5867211232f9c63293ca1 Mon Sep 17 00:00:00 2001 From: Gao feng Date: Tue, 29 Sep 2015 00:04:34 +0800 Subject: [PATCH] remove useless clone flag Signed-off-by: Gao feng --- src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.c b/src/init.c index aaf9c16..36bf7e5 100644 --- a/src/init.c +++ b/src/init.c @@ -508,7 +508,7 @@ static int hyper_setup_container(struct hyper_pod *pod) { int stacksize = getpagesize() * 4; int flags = CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | - CLONE_NEWUTS | CLONE_VM | SIGCHLD; + CLONE_NEWUTS; struct hyper_pod_arg arg = { .pod = NULL,