]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sched/deadline: Use online cpus for validating runtime
authorShrikanth Hegde <sshegde@linux.ibm.com>
Thu, 6 Mar 2025 05:29:53 +0000 (10:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Apr 2025 12:32:03 +0000 (14:32 +0200)
commit26d4d84aa6cfb8a77c73677024c77e6f5a8a6962
tree8b27b95c1c47ba6029ff845e5e63224bbdb89253
parentc3a3484d9d31b27a3db0fab91fcf191132d65236
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>
kernel/sched/deadline.c