|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86/cpuidle: clean up Cx dumping
commit 76ba8b14285c0a77dedd312426238eba7ce8b86b
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Tue May 21 08:31:47 2019 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue May 21 08:31:47 2019 +0200
x86/cpuidle: clean up Cx dumping
Don't log the same global information once per CPU. Don't log the same
information (here: the currently active state) twice. Don't prefix
decimal numbers with zeros (giving the impression they're octal). Use
format specifiers matching the type of the corresponding expressions.
Don't split printk()-s without intervening new-lines.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
xen/arch/x86/acpi/cpu_idle.c | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/xen/arch/x86/acpi/cpu_idle.c b/xen/arch/x86/acpi/cpu_idle.c
index 13459ab8d8..8846722bca 100644
--- a/xen/arch/x86/acpi/cpu_idle.c
+++ b/xen/arch/x86/acpi/cpu_idle.c
@@ -302,9 +302,6 @@ static void print_acpi_power(uint32_t cpu, struct
acpi_processor_power *power)
printk("==cpu%d==\n", cpu);
last_state_idx = power->last_state ? power->last_state->idx : -1;
- printk("active state:\t\tC%d\n", last_state_idx);
- printk("max_cstate:\t\tC%d\n", max_cstate);
- printk("states:\n");
spin_lock_irq(&power->stat_lock);
current_tick = cpuidle_get_tick();
@@ -329,16 +326,14 @@ static void print_acpi_power(uint32_t cpu, struct
acpi_processor_power *power)
idle_usage += usage[i];
idle_res += tick_to_ns(res_tick[i]);
- printk((last_state_idx == i) ? " *" : " ");
- printk("C%d:\t", i);
- printk("type[C%d] ", power->states[i].type);
- printk("latency[%03d] ", power->states[i].latency);
- printk("usage[%08"PRIu64"] ", usage[i]);
- printk("method[%5s] ",
acpi_cstate_method_name[power->states[i].entry_method]);
- printk("duration[%"PRIu64"]\n", tick_to_ns(res_tick[i]));
+ printk(" %cC%u:\ttype[C%d] latency[%3u] usage[%8"PRIu64"]
method[%5s] duration[%"PRIu64"]\n",
+ (last_state_idx == i) ? '*' : ' ', i,
+ power->states[i].type, power->states[i].latency, usage[i],
+ acpi_cstate_method_name[power->states[i].entry_method],
+ tick_to_ns(res_tick[i]));
}
- printk((last_state_idx == 0) ? " *" : " ");
- printk("C0:\tusage[%08"PRIu64"] duration[%"PRIu64"]\n",
+ printk(" %cC0:\tusage[%8"PRIu64"] duration[%"PRIu64"]\n",
+ (last_state_idx == 0) ? '*' : ' ',
usage[0] + idle_usage, current_stime - idle_res);
print_hw_residencies(cpu);
@@ -349,6 +344,7 @@ static void dump_cx(unsigned char key)
unsigned int cpu;
printk("'%c' pressed -> printing ACPI Cx structures\n", key);
+ printk("max cstate: C%u\n", max_cstate);
for_each_present_cpu ( cpu )
{
struct acpi_processor_power *power = processor_powers[cpu];
--
generated by git-patchbot for /home/xen/git/xen.git#staging
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |