Skip to content

Commit 26d4d84

Browse files
Shrikanth Hegdegregkh
Shrikanth Hegde
authored andcommitted
sched/deadline: Use online cpus for validating runtime
[ Upstream commit 14672f059d83f591afb2ee1fff56858efe055e5a ] The ftrace selftest reported a failure because writing -1 to sched_rt_runtime_us returns -EBUSY. This happens when the possible CPUs are different from active CPUs. Active CPUs are part of one root domain, while remaining CPUs are part of def_root_domain. Since active cpumask is being used, this results in cpus=0 when a non active CPUs is used in the loop. Fix it by looping over the online CPUs instead for validating the bandwidth calculations. Signed-off-by: Shrikanth Hegde <sshegde@linux.ibm.com> Signed-off-by: Ingo Molnar <mingo@kernel.org> Reviewed-by: Juri Lelli <juri.lelli@redhat.com> Link: https://lore.kernel.org/r/20250306052954.452005-2-sshegde@linux.ibm.com Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent c3a3484 commit 26d4d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/sched/deadline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2610,7 +2610,7 @@ int sched_dl_global_validate(void)
26102610
* value smaller than the currently allocated bandwidth in
26112611
* any of the root_domains.
26122612
*/
2613-
for_each_possible_cpu(cpu) {
2613+
for_each_online_cpu(cpu) {
26142614
rcu_read_lock_sched();
26152615

26162616
if (dl_bw_visited(cpu, gen))

0 commit comments

Comments
 (0)