1
0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2026-01-11 17:10:13 +00:00

Merge branch 'for-6.18-fixes' into for-6.19

Pull to receive f4fa7c25f632 ("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

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;