From b28c281086fb4c9832e68ff9041825771f269384 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Wed, 3 Jul 2019 17:57:48 +0200 Subject: [PATCH] cgroups: hande cpuset initialization race Signed-off-by: Christian Brauner --- src/lxc/cgroups/cgfsng.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lxc/cgroups/cgfsng.c b/src/lxc/cgroups/cgfsng.c index 619727267..87e12d2dd 100644 --- a/src/lxc/cgroups/cgfsng.c +++ b/src/lxc/cgroups/cgfsng.c @@ -612,10 +612,8 @@ static bool cg_legacy_handle_cpuset_hierarchy(struct hierarchy *h, char *cgname) } /* Already set for us by someone else. */ - if (v == '1') { - DEBUG("\"cgroup.clone_children\" was already set to \"1\""); - return true; - } + if (v == '1') + TRACE("\"cgroup.clone_children\" was already set to \"1\""); /* copy parent's settings */ if (!copy_parent_file(cgpath, "cpuset.mems")) { -- 2.47.2