mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 22:14:03 +02:00
sched_ext: Fix stale errno in scx_sub_enable_workfn()
The nesting depth check and the cgroup online check in
scx_sub_enable_workfn() reach err_disable without setting ret, so
the fallback error added by commit db4e9defd2 ("sched_ext: Record
an error on errno-only sub-enable failure") reports
"scx_sub_enable() failed (0)".
This is currently harmless because both paths record their own
scx_error() first and the first error wins, but it leaves the
fallback broken for these paths. Set -EINVAL and -ENODEV there
so the fallback always reports a real errno.
v2: The validate_ops() path from v1 is already fixed in for-7.3
(sub.c already has ret = scx_validate_ops()), so only the two
remaining paths are addressed.
Signed-off-by: Cui Jian <cjian720@163.com>
Reviewed-by: Andrea Righi <arighi@nvidia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
2abee44c7d
commit
00a08ddfb4
|
|
@ -1331,6 +1331,7 @@ void scx_sub_enable_workfn(struct kthread_work *work)
|
|||
if (sch->level >= SCX_SUB_MAX_DEPTH) {
|
||||
scx_error(sch, "max nesting depth %d violated",
|
||||
SCX_SUB_MAX_DEPTH);
|
||||
ret = -EINVAL;
|
||||
goto err_disable;
|
||||
}
|
||||
|
||||
|
|
@ -1378,6 +1379,7 @@ void scx_sub_enable_workfn(struct kthread_work *work)
|
|||
set_cgroup_sched(sch_cgroup(sch), sch);
|
||||
if (!(cgrp->self.flags & CSS_ONLINE)) {
|
||||
scx_error(sch, "cgroup is not online");
|
||||
ret = -ENODEV;
|
||||
goto err_unlock_and_disable;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user