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-5.0.0~79^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=565b6e92d34c47c6b431b48f8efb6c0182b326ae;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"); }