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:
Tejun Heo 2025-10-29 05:18:13 -10:00
commit 2d697e5f5a
1 changed files with 1 additions and 1 deletions

View File

@ -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;