[PATCH v2 1/2] sched/topology: Fix EAS cpufreq check print
From: Christian Loehle
Date: Wed Mar 19 2025 - 09:14:48 EST
Add the missing newline on cpufreq check to ensure the EAS abort
reason doesn't go missing.
Fixes: 8f833c82cdab ("sched/topology: Change behaviour of the 'sched_energy_aware' sysctl, based on the platform")
Cc: stable@xxxxxxxxxxxxxxx
Signed-off-by: Christian Loehle <christian.loehle@xxxxxxx>
Reviewed-by: Vincent Guittot <vincent.guittot@xxxxxxxxxx>
---
kernel/sched/topology.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index c49aea8c1025..27f14a775004 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -256,7 +256,7 @@ static bool sched_is_eas_possible(const struct cpumask *cpu_mask)
policy = cpufreq_cpu_get(i);
if (!policy) {
if (sched_debug()) {
- pr_info("rd %*pbl: Checking EAS, cpufreq policy not set for CPU: %d",
+ pr_info("rd %*pbl: Checking EAS, cpufreq policy not set for CPU: %d\n",
cpumask_pr_args(cpu_mask), i);
}
return false;
--
2.34.1