* [GIT PULL] cpupower update for Linux 6.12-rc1
@ 2024-09-04 22:02 Shuah Khan
2024-09-05 11:17 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2024-09-04 22:02 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: shuah, Shuah Khan, linux-pm, linux-kernel, Thomas Renninger,
Thomas Renninger
[-- Attachment #1: Type: text/plain, Size: 1575 bytes --]
Hi Rafael,
Please pull the following cpupower update for Linux 6.12-rc1.
This cpupower update for Linux 6.12-rc1 consists of an enhancement
to cpuidle tool to display the residency value of cpuidle states.
This addition provides a clearer and more detailed view of idle
state information when using cpuidle-info.
diff is attached.
thanks,
-- Shuah
----------------------------------------------------------------
The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:
Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux tags/linux-cpupower-6.12-rc1
for you to fetch changes up to 76fb981ad6774b82f06703c896b492c8659b543b:
tools/cpupower: display residency value in idle-info (2024-08-09 10:32:33 -0600)
----------------------------------------------------------------
linux-cpupower-6.12-rc1
This cpupower update for Linux 6.12-rc1 consists of an enhancement
to cpuidle tool to display the residency value of cpuidle states.
This addition provides a clearer and more detailed view of idle
state information when using cpuidle-info.
----------------------------------------------------------------
Aboorva Devarajan (1):
tools/cpupower: display residency value in idle-info
tools/power/cpupower/lib/cpuidle.c | 8 ++++++++
tools/power/cpupower/lib/cpuidle.h | 2 ++
tools/power/cpupower/utils/cpuidle-info.c | 4 ++++
3 files changed, 14 insertions(+)
----------------------------------------------------------------
[-- Attachment #2: linux-cpupower-6.12-rc1.diff --]
[-- Type: text/x-patch, Size: 2732 bytes --]
diff --git a/tools/power/cpupower/lib/cpuidle.c b/tools/power/cpupower/lib/cpuidle.c
index 479c5971aa6d..0ecac009273c 100644
--- a/tools/power/cpupower/lib/cpuidle.c
+++ b/tools/power/cpupower/lib/cpuidle.c
@@ -116,6 +116,7 @@ enum idlestate_value {
IDLESTATE_USAGE,
IDLESTATE_POWER,
IDLESTATE_LATENCY,
+ IDLESTATE_RESIDENCY,
IDLESTATE_TIME,
IDLESTATE_DISABLE,
MAX_IDLESTATE_VALUE_FILES
@@ -125,6 +126,7 @@ static const char *idlestate_value_files[MAX_IDLESTATE_VALUE_FILES] = {
[IDLESTATE_USAGE] = "usage",
[IDLESTATE_POWER] = "power",
[IDLESTATE_LATENCY] = "latency",
+ [IDLESTATE_RESIDENCY] = "residency",
[IDLESTATE_TIME] = "time",
[IDLESTATE_DISABLE] = "disable",
};
@@ -254,6 +256,12 @@ unsigned long cpuidle_state_latency(unsigned int cpu,
return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_LATENCY);
}
+unsigned long cpuidle_state_residency(unsigned int cpu,
+ unsigned int idlestate)
+{
+ return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_RESIDENCY);
+}
+
unsigned long cpuidle_state_usage(unsigned int cpu,
unsigned int idlestate)
{
diff --git a/tools/power/cpupower/lib/cpuidle.h b/tools/power/cpupower/lib/cpuidle.h
index 2e10fead2e1e..2ab404d40259 100644
--- a/tools/power/cpupower/lib/cpuidle.h
+++ b/tools/power/cpupower/lib/cpuidle.h
@@ -8,6 +8,8 @@ int cpuidle_state_disable(unsigned int cpu, unsigned int idlestate,
unsigned int disable);
unsigned long cpuidle_state_latency(unsigned int cpu,
unsigned int idlestate);
+unsigned long cpuidle_state_residency(unsigned int cpu,
+ unsigned int idlestate);
unsigned long cpuidle_state_usage(unsigned int cpu,
unsigned int idlestate);
unsigned long long cpuidle_state_time(unsigned int cpu,
diff --git a/tools/power/cpupower/utils/cpuidle-info.c b/tools/power/cpupower/utils/cpuidle-info.c
index 44126a87fa7a..e0d17f0de3fe 100644
--- a/tools/power/cpupower/utils/cpuidle-info.c
+++ b/tools/power/cpupower/utils/cpuidle-info.c
@@ -64,6 +64,8 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose)
printf(_("Latency: %lu\n"),
cpuidle_state_latency(cpu, idlestate));
+ printf(_("Residency: %lu\n"),
+ cpuidle_state_residency(cpu, idlestate));
printf(_("Usage: %lu\n"),
cpuidle_state_usage(cpu, idlestate));
printf(_("Duration: %llu\n"),
@@ -115,6 +117,8 @@ static void proc_cpuidle_cpu_output(unsigned int cpu)
printf(_("promotion[--] demotion[--] "));
printf(_("latency[%03lu] "),
cpuidle_state_latency(cpu, cstate));
+ printf(_("residency[%05lu] "),
+ cpuidle_state_residency(cpu, cstate));
printf(_("usage[%08lu] "),
cpuidle_state_usage(cpu, cstate));
printf(_("duration[%020Lu] \n"),
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [GIT PULL] cpupower update for Linux 6.12-rc1
2024-09-04 22:02 [GIT PULL] cpupower update for Linux 6.12-rc1 Shuah Khan
@ 2024-09-05 11:17 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2024-09-05 11:17 UTC (permalink / raw)
To: Shuah Khan
Cc: Rafael J. Wysocki, shuah, linux-pm, linux-kernel,
Thomas Renninger, Thomas Renninger
Hi Shuah,
On Thu, Sep 5, 2024 at 12:02 AM Shuah Khan <skhan@linuxfoundation.org> wrote:
>
> Hi Rafael,
>
> Please pull the following cpupower update for Linux 6.12-rc1.
>
> This cpupower update for Linux 6.12-rc1 consists of an enhancement
> to cpuidle tool to display the residency value of cpuidle states.
> This addition provides a clearer and more detailed view of idle
> state information when using cpuidle-info.
>
> diff is attached.
Pulled and added to the linux-next branch in linux-pm.git, thanks!
> ----------------------------------------------------------------
> The following changes since commit 8400291e289ee6b2bf9779ff1c83a291501f017b:
>
> Linux 6.11-rc1 (2024-07-28 14:19:55 -0700)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux tags/linux-cpupower-6.12-rc1
>
> for you to fetch changes up to 76fb981ad6774b82f06703c896b492c8659b543b:
>
> tools/cpupower: display residency value in idle-info (2024-08-09 10:32:33 -0600)
>
> ----------------------------------------------------------------
> linux-cpupower-6.12-rc1
>
> This cpupower update for Linux 6.12-rc1 consists of an enhancement
> to cpuidle tool to display the residency value of cpuidle states.
> This addition provides a clearer and more detailed view of idle
> state information when using cpuidle-info.
>
> ----------------------------------------------------------------
> Aboorva Devarajan (1):
> tools/cpupower: display residency value in idle-info
>
> tools/power/cpupower/lib/cpuidle.c | 8 ++++++++
> tools/power/cpupower/lib/cpuidle.h | 2 ++
> tools/power/cpupower/utils/cpuidle-info.c | 4 ++++
> 3 files changed, 14 insertions(+)
> ----------------------------------------------------------------
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-05 11:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-04 22:02 [GIT PULL] cpupower update for Linux 6.12-rc1 Shuah Khan
2024-09-05 11:17 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®