From: Christian Brauner Date: Fri, 1 Oct 2021 08:12:43 +0000 (+0200) Subject: start: don't fail when core scheduling isn't supported X-Git-Tag: lxc-4.0.11~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c197f076da24af9344d8dc2e6d6fe9c2838b67f8;p=thirdparty%2Flxc.git start: don't fail when core scheduling isn't supported Signed-off-by: Christian Brauner --- diff --git a/src/lxc/start.c b/src/lxc/start.c index fcfdb226c..f846af6d1 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -1567,7 +1567,7 @@ static int core_scheduling(struct lxc_handler *handler) ret = core_scheduling_cookie_create_threadgroup(handler->pid); if (ret < 0) { if (ret == -EINVAL) - return sysinfo("The kernel does not support core scheduling"); + return sysinfo_ret(0, "The kernel does not support core scheduling"); return syserror("Failed to create new core scheduling domain"); }