mirror of https://github.com/torvalds/linux.git
Merge branch 'for-6.18-fixes' into for-6.19
Pull to receive f4fa7c25f6 ("sched_ext: Fix use of uninitialized variable
in scx_bpf_cpuperf_set()") which conflicts with changes for planned
sub-sched changes.
This commit is contained in:
commit
2d697e5f5a
|
|
@ -6532,7 +6532,7 @@ __bpf_kfunc void scx_bpf_cpuperf_set(s32 cpu, u32 perf)
|
|||
|
||||
guard(rcu)();
|
||||
|
||||
sch = rcu_dereference(sch);
|
||||
sch = rcu_dereference(scx_root);
|
||||
if (unlikely(!sch))
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue