mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-12 13:20:30 +00:00
start: don't fail when core scheduling isn't supported
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
parent
47bfecf510
commit
565b6e92d3
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user