mirror of https://github.com/torvalds/linux.git
sched_ext: Fix use of uninitialized variable in scx_bpf_cpuperf_set()
scx_bpf_cpuperf_set() has a typo where it dereferences the local
variable @sch, instead of the global @scx_root pointer. Fix by
dereferencing the correct variable.
Fixes: 956f2b11a8 ("sched_ext: Drop kf_cpu_valid()")
Signed-off-by: Andrea Righi <arighi@nvidia.com>
Reviewed-by: Christian Loehle <christian.loehle@arm.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
a3c4a0a42e
commit
f4fa7c25f6
|
|
@ -6401,7 +6401,7 @@ __bpf_kfunc void scx_bpf_cpuperf_set(s32 cpu, u32 perf)
|
||||||
|
|
||||||
guard(rcu)();
|
guard(rcu)();
|
||||||
|
|
||||||
sch = rcu_dereference(sch);
|
sch = rcu_dereference(scx_root);
|
||||||
if (unlikely(!sch))
|
if (unlikely(!sch))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue