]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
tools/power cpupower: Show C0 in idle-info dump
authorKaushlendra Kumar <kaushlendra.kumar@intel.com>
Tue, 2 Dec 2025 06:54:03 +0000 (12:24 +0530)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 15 Dec 2025 19:33:29 +0000 (12:33 -0700)
`cpupower idle-info -o` skipped C0 because the loop began at 1:

  before:
    states:
      C1 ... latency[002] residency[00002]
      C2 ... latency[010] residency[00020]
      C3 ... latency[133] residency[00600]

  after:
    states:
      C0 ... latency[000] residency[00000]
      C1 ... latency[002] residency[00002]
      C2 ... latency[010] residency[00020]
      C3 ... latency[133] residency[00600]

Start iterating at index 0 so the idle report mirrors sysfs and
includes C0 stats.

Link: https://lore.kernel.org/r/20251202065403.1492807-1-kaushlendra.kumar@intel.com
Signed-off-by: Kaushlendra Kumar <kaushlendra.kumar@intel.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/power/cpupower/utils/cpuidle-info.c

index e0d17f0de3fe377bbc26553d6c53e59ab3760039..81b4763a97d6de87a367f31a3e55f9a059bb916e 100644 (file)
@@ -111,7 +111,7 @@ static void proc_cpuidle_cpu_output(unsigned int cpu)
        printf(_("max_cstate:              C%u\n"), cstates-1);
        printf(_("maximum allowed latency: %lu usec\n"), max_allowed_cstate);
        printf(_("states:\t\n"));
-       for (cstate = 1; cstate < cstates; cstate++) {
+       for (cstate = 0; cstate < cstates; cstate++) {
                printf(_("    C%d:                  "
                         "type[C%d] "), cstate, cstate);
                printf(_("promotion[--] demotion[--] "));