[PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes

Rafael J. Wysocki posted 1 patch 3 months ago
arch/x86/kernel/cpu/aperfmperf.c |    4 ++++
1 file changed, 4 insertions(+)
[PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes
Posted by Rafael J. Wysocki 3 months ago
From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Subject: [PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes

Make arch_set_cpu_capacity() print a debug message including the
capacity and maximum frequency ratio used in scale-invariant utilization
computations for a given CPU and in capacity-aware scheduling (CAS) or
energy-aware scheduling (EAS).

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---
 arch/x86/kernel/cpu/aperfmperf.c |    4 ++++
 1 file changed, 4 insertions(+)

--- a/arch/x86/kernel/cpu/aperfmperf.c
+++ b/arch/x86/kernel/cpu/aperfmperf.c
@@ -416,6 +416,10 @@
 			   div_u64(cap << SCHED_CAPACITY_SHIFT, max_cap));
 		WRITE_ONCE(per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio,
 			   div_u64(cap_freq << SCHED_CAPACITY_SHIFT, base_freq));
+
+		pr_debug("CPU%d: capacity = %lu, freq_ratio = %lu\n", cpu,
+			 per_cpu_ptr(arch_cpu_scale, cpu)->capacity,
+			 per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio);
 	} else {
 		WARN_ONCE(1, "Hybrid CPU capacity scaling not enabled");
 	}
Re: [PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes
Posted by Peter Zijlstra 2 months, 4 weeks ago
On Wed, Jul 09, 2025 at 12:47:17PM +0200, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> Subject: [PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes
> 
> Make arch_set_cpu_capacity() print a debug message including the
> capacity and maximum frequency ratio used in scale-invariant utilization
> computations for a given CPU and in capacity-aware scheduling (CAS) or
> energy-aware scheduling (EAS).
> 
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> ---
>  arch/x86/kernel/cpu/aperfmperf.c |    4 ++++
>  1 file changed, 4 insertions(+)
> 
> --- a/arch/x86/kernel/cpu/aperfmperf.c
> +++ b/arch/x86/kernel/cpu/aperfmperf.c
> @@ -416,6 +416,10 @@
>  			   div_u64(cap << SCHED_CAPACITY_SHIFT, max_cap));
>  		WRITE_ONCE(per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio,
>  			   div_u64(cap_freq << SCHED_CAPACITY_SHIFT, base_freq));
> +
> +		pr_debug("CPU%d: capacity = %lu, freq_ratio = %lu\n", cpu,
> +			 per_cpu_ptr(arch_cpu_scale, cpu)->capacity,
> +			 per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio);
>  	} else {
>  		WARN_ONCE(1, "Hybrid CPU capacity scaling not enabled");
>  	}

There's already a printk in the calling function
hybrid_set_cpu_capacity(), so now we get _2_ prints per CPU. That's a
bit excessive, no?

Also, should this print be conditional on sched_debug_verbose?
Re: [PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes
Posted by Rafael J. Wysocki 2 months, 4 weeks ago
On Wed, Jul 9, 2025 at 1:46 PM Peter Zijlstra <peterz@infradead.org> wrote:
>
> On Wed, Jul 09, 2025 at 12:47:17PM +0200, Rafael J. Wysocki wrote:
> > From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > Subject: [PATCH v1] x86/sched: Print debug messages on hybrid asym capacity changes
> >
> > Make arch_set_cpu_capacity() print a debug message including the
> > capacity and maximum frequency ratio used in scale-invariant utilization
> > computations for a given CPU and in capacity-aware scheduling (CAS) or
> > energy-aware scheduling (EAS).
> >
> > Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > ---
> >  arch/x86/kernel/cpu/aperfmperf.c |    4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > --- a/arch/x86/kernel/cpu/aperfmperf.c
> > +++ b/arch/x86/kernel/cpu/aperfmperf.c
> > @@ -416,6 +416,10 @@
> >                          div_u64(cap << SCHED_CAPACITY_SHIFT, max_cap));
> >               WRITE_ONCE(per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio,
> >                          div_u64(cap_freq << SCHED_CAPACITY_SHIFT, base_freq));
> > +
> > +             pr_debug("CPU%d: capacity = %lu, freq_ratio = %lu\n", cpu,
> > +                      per_cpu_ptr(arch_cpu_scale, cpu)->capacity,
> > +                      per_cpu_ptr(arch_cpu_scale, cpu)->freq_ratio);
> >       } else {
> >               WARN_ONCE(1, "Hybrid CPU capacity scaling not enabled");
> >       }
>
> There's already a printk in the calling function
> hybrid_set_cpu_capacity(), so now we get _2_ prints per CPU. That's a
> bit excessive, no?

Yeah, fair enough.

> Also, should this print be conditional on sched_debug_verbose?

It might, but it is dynamic debug anyway.