* [PATCH 1/2] tools/power turbostat: regression fix: --show C1E%
@ 2025-06-10 22:18 Len Brown
2025-06-10 22:18 ` [PATCH 2/2] tools/power turbostat: verify arguments to params --show and --hide Len Brown
0 siblings, 1 reply; 3+ messages in thread
From: Len Brown @ 2025-06-10 22:18 UTC (permalink / raw)
To: linux-pm; +Cc: Len Brown, Zhang Rui
From: Len Brown <len.brown@intel.com>
The new default idle counter groupings broke "--show C1E%" (or any other C-state %)
Also delete a stray debug printf from the same offending commit.
Reported-by: Zhang Rui <rui.zhang@intel.com>
Fixes: ec4acd3166d8 ("tools/power turbostat: disable "cpuidle" invocation counters, by default")
Signed-off-by: Len Brown <len.brown@intel.com>
---
tools/power/x86/turbostat/turbostat.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index 5230e072e414..33a54a9e0781 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -2429,7 +2429,6 @@ unsigned long long bic_lookup(char *name_list, enum show_hide_mode mode)
}
if (i == MAX_BIC) {
- fprintf(stderr, "deferred %s\n", name_list);
if (mode == SHOW_LIST) {
deferred_add_names[deferred_add_index++] = name_list;
if (deferred_add_index >= MAX_DEFERRED) {
@@ -10537,9 +10536,6 @@ void probe_cpuidle_residency(void)
int min_state = 1024, max_state = 0;
char *sp;
- if (!DO_BIC(BIC_pct_idle))
- return;
-
for (state = 10; state >= 0; --state) {
sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name", base_cpu, state);
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] tools/power turbostat: verify arguments to params --show and --hide
2025-06-10 22:18 [PATCH 1/2] tools/power turbostat: regression fix: --show C1E% Len Brown
@ 2025-06-10 22:18 ` Len Brown
2025-06-11 2:02 ` Zhang, Rui
0 siblings, 1 reply; 3+ messages in thread
From: Len Brown @ 2025-06-10 22:18 UTC (permalink / raw)
To: linux-pm; +Cc: Len Brown
From: Len Brown <len.brown@intel.com>
$ sudo turbostat --quiet --show junk
turbostat: Counter 'junk' can not be added.
Previously, invalid argumetns to --show and --hide were silently ignored
Signed-off-by: Len Brown <len.brown@intel.com>
---
tools/power/x86/turbostat/turbostat.c | 33 +++++++++++++++++++++++++--
1 file changed, 31 insertions(+), 2 deletions(-)
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index 33a54a9e0781..4056b7e26a0f 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -2310,6 +2310,8 @@ char *deferred_add_names[MAX_DEFERRED];
char *deferred_skip_names[MAX_DEFERRED];
int deferred_add_index;
int deferred_skip_index;
+unsigned int deferred_add_consumed;
+unsigned int deferred_skip_consumed;
/*
* HIDE_LIST - hide this list of counters, show the rest [default]
@@ -10512,8 +10514,10 @@ int is_deferred_add(char *name)
int i;
for (i = 0; i < deferred_add_index; ++i)
- if (!strcmp(name, deferred_add_names[i]))
+ if (!strcmp(name, deferred_add_names[i])) {
+ deferred_add_consumed |= (1 << i);
return 1;
+ }
return 0;
}
@@ -10522,11 +10526,34 @@ int is_deferred_skip(char *name)
int i;
for (i = 0; i < deferred_skip_index; ++i)
- if (!strcmp(name, deferred_skip_names[i]))
+ if (!strcmp(name, deferred_skip_names[i])) {
+ deferred_skip_consumed |= (1 << i);
return 1;
+ }
return 0;
}
+void verify_deferred_consumed(void)
+{
+ int i;
+ int fail = 0;
+
+ for (i = 0; i < deferred_add_index; ++i) {
+ if (!(deferred_add_consumed & (1 << i))) {
+ warnx("Counter '%s' can not be added.", deferred_add_names[i]);
+ fail++;
+ }
+ }
+ for (i = 0; i < deferred_skip_index; ++i) {
+ if (!(deferred_skip_consumed & (1 << i))) {
+ warnx("Counter '%s' can not be skipped.", deferred_skip_names[i]);
+ fail++;
+ }
+ }
+ if (fail)
+ exit(-EINVAL);
+}
+
void probe_cpuidle_residency(void)
{
char path[64];
@@ -10885,6 +10912,8 @@ int main(int argc, char **argv)
probe_cpuidle_residency();
probe_cpuidle_counts();
+ verify_deferred_consumed();
+
if (!getuid())
set_rlimit();
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] tools/power turbostat: verify arguments to params --show and --hide
2025-06-10 22:18 ` [PATCH 2/2] tools/power turbostat: verify arguments to params --show and --hide Len Brown
@ 2025-06-11 2:02 ` Zhang, Rui
0 siblings, 0 replies; 3+ messages in thread
From: Zhang, Rui @ 2025-06-11 2:02 UTC (permalink / raw)
To: linux-pm@vger.kernel.org, lenb@kernel.org; +Cc: Brown, Len
On Tue, 2025-06-10 at 18:18 -0400, Len Brown wrote:
> From: Len Brown <len.brown@intel.com>
>
> $ sudo turbostat --quiet --show junk
> turbostat: Counter 'junk' can not be added.
>
> Previously, invalid argumetns to --show and --hide were silently
> ignored
s/argumetns/arguments
otherwise, the patch LGTM.
Acked-by: Zhang Rui <rui.zhang@intel.com>
-rui
>
> Signed-off-by: Len Brown <len.brown@intel.com>
> ---
> tools/power/x86/turbostat/turbostat.c | 33 +++++++++++++++++++++++++--
> 1 file changed, 31 insertions(+), 2 deletions(-)
>
> diff --git a/tools/power/x86/turbostat/turbostat.c
> b/tools/power/x86/turbostat/turbostat.c
> index 33a54a9e0781..4056b7e26a0f 100644
> --- a/tools/power/x86/turbostat/turbostat.c
> +++ b/tools/power/x86/turbostat/turbostat.c
> @@ -2310,6 +2310,8 @@ char *deferred_add_names[MAX_DEFERRED];
> char *deferred_skip_names[MAX_DEFERRED];
> int deferred_add_index;
> int deferred_skip_index;
> +unsigned int deferred_add_consumed;
> +unsigned int deferred_skip_consumed;
>
> /*
> * HIDE_LIST - hide this list of counters, show the rest [default]
> @@ -10512,8 +10514,10 @@ int is_deferred_add(char *name)
> int i;
>
> for (i = 0; i < deferred_add_index; ++i)
> - if (!strcmp(name, deferred_add_names[i]))
> + if (!strcmp(name, deferred_add_names[i])) {
> + deferred_add_consumed |= (1 << i);
> return 1;
> + }
> return 0;
> }
>
> @@ -10522,11 +10526,34 @@ int is_deferred_skip(char *name)
> int i;
>
> for (i = 0; i < deferred_skip_index; ++i)
> - if (!strcmp(name, deferred_skip_names[i]))
> + if (!strcmp(name, deferred_skip_names[i])) {
> + deferred_skip_consumed |= (1 << i);
> return 1;
> + }
> return 0;
> }
>
> +void verify_deferred_consumed(void)
> +{
> + int i;
> + int fail = 0;
> +
> + for (i = 0; i < deferred_add_index; ++i) {
> + if (!(deferred_add_consumed & (1 << i))) {
> + warnx("Counter '%s' can not be added.",
> deferred_add_names[i]);
> + fail++;
> + }
> + }
> + for (i = 0; i < deferred_skip_index; ++i) {
> + if (!(deferred_skip_consumed & (1 << i))) {
> + warnx("Counter '%s' can not be skipped.",
> deferred_skip_names[i]);
> + fail++;
> + }
> + }
> + if (fail)
> + exit(-EINVAL);
> +}
> +
> void probe_cpuidle_residency(void)
> {
> char path[64];
> @@ -10885,6 +10912,8 @@ int main(int argc, char **argv)
> probe_cpuidle_residency();
> probe_cpuidle_counts();
>
> + verify_deferred_consumed();
> +
> if (!getuid())
> set_rlimit();
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-11 2:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-10 22:18 [PATCH 1/2] tools/power turbostat: regression fix: --show C1E% Len Brown
2025-06-10 22:18 ` [PATCH 2/2] tools/power turbostat: verify arguments to params --show and --hide Len Brown
2025-06-11 2:02 ` Zhang, Rui
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox