Linux Perf Users
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Ian Rogers" <irogers@google.com>
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH v1 02/14] perf pmu-events: Add API to get metric table name and iterate tables
Date: Thu, 14 May 2026 11:42:43 +0000	[thread overview]
Message-ID: <20260514114244.4320FC2BCB8@smtp.kernel.org> (raw)
In-Reply-To: <20260513230450.529380-3-irogers@google.com>

Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [Medium] The `.name` field in `pmu_metrics_table` is erroneously initialized to the string literal "NULL" instead of a null pointer for CPUs without metrics.
- [Medium] The `pmu_metrics_table__for_each_table()` API yields duplicate metric tables when multiple CPU IDs share the same architecture.
--

commit d5de54c2353e5ad926b97d677ee122277c30d0b2
Author: Ian Rogers <irogers@google.com>

perf pmu-events: Add API to get metric table name and iterate tables

This commit adds a name field to struct pmu_metrics_table and populates it
in generated tables. It introduces functions to retrieve the table name and
to iterate over all known metric tables.

> diff --git a/tools/perf/pmu-events/empty-pmu-events.c b/tools/perf/pmu-events/empty-pmu-events.c
> index 322e6c2d58cb0..f51062ef25d3f 100644
> --- a/tools/perf/pmu-events/empty-pmu-events.c
> +++ b/tools/perf/pmu-events/empty-pmu-events.c

[ ... ]

> @@ -5992,6 +5995,35 @@ int pmu_for_each_sys_metric(pmu_metric_iter_fn fn, void *data)
>  	return 0;
>  }
>  
> +const char *pmu_metrics_table__name(const struct pmu_metrics_table *table)
> +{
> +	return table ? table->name : NULL;
> +}
> +
> +int pmu_metrics_table__for_each_table(
> +	int (*fn)(const struct pmu_metrics_table *table, void *data),
> +	void *data)
> +{
> +	size_t i;
> +	int ret;
> +
> +	for (i = 0; pmu_events_map[i].cpuid; i++) {
> +		if (!pmu_events_map[i].metric_table.pmus)
> +			continue;
> +		ret = fn(&pmu_events_map[i].metric_table, data);

Are duplicate metric tables yielded here when multiple CPU IDs share the same
architecture?

In architectures like ARM64 and x86, multiple CPU mappings can point to the
exact same metric definitions. Because struct pmu_metrics_table is embedded
directly into each element of the pmu_events_map array, each duplicate CPU
mapping yields a unique memory address (&pmu_events_map[i].metric_table)
while containing identical .pmus pointers.

As this makes trivial pointer deduplication impossible for callers, consumers
of this API could generate redundant operations for identical tables.

[ ... ]

> diff --git a/tools/perf/pmu-events/jevents.py b/tools/perf/pmu-events/jevents.py
> index 7d325604f04db..a74c5e828bd15 100755
> --- a/tools/perf/pmu-events/jevents.py
> +++ b/tools/perf/pmu-events/jevents.py

[ ... ]

> @@ -796,6 +799,7 @@ static const struct pmu_events_map pmu_events_map[] = {
>  		.num_pmus = {event_size}
>  	}},
>  	.metric_table = {{
> +		.name = "{metric_tblname.replace('pmu_metrics__', '')}",
>  		.pmus = {metric_tblname},
>  		.num_pmus = {metric_size}
>  	}}

If metric_tblname is the string 'NULL' for architectures that have mapped
events but lack an associated metric table, will this evaluate to
.name = "NULL"?

This writes a 4-character string literal into the generated C code instead
of a true null pointer. Callers attempting to perform null checks like
if (table->name) would then erroneously evaluate to true.

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260513230450.529380-1-irogers@google.com?part=2

  reply	other threads:[~2026-05-14 11:42 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-13 23:04 [PATCH v1 00/14] perf test: Harness improvements Ian Rogers
2026-05-13 23:04 ` [PATCH v1 01/14] perf jevents.py: Make generated C code more kernel style Ian Rogers
2026-05-13 23:04 ` [PATCH v1 02/14] perf pmu-events: Add API to get metric table name and iterate tables Ian Rogers
2026-05-14 11:42   ` sashiko-bot [this message]
2026-05-13 23:04 ` [PATCH v1 03/14] perf test: Drain pipe after child finishes to avoid losing output Ian Rogers
2026-05-13 23:04 ` [PATCH v1 04/14] perf test: Support dynamic test suites with setup callback and private data Ian Rogers
2026-05-14 12:10   ` sashiko-bot
2026-05-13 23:04 ` [PATCH v1 05/14] perf test pmu-events: A sub-test per metric table Ian Rogers
2026-05-13 23:04 ` [PATCH v1 06/14] perf test: Refactor parallel poll loop to drain all pipes simultaneously Ian Rogers
2026-05-14 14:27   ` sashiko-bot
2026-05-13 23:04 ` [PATCH v1 07/14] perf test: Show snippet failure output for verbose=1 Ian Rogers
2026-05-14 15:50   ` sashiko-bot
2026-05-13 23:04 ` [PATCH v1 08/14] perf test: Add summary reporting Ian Rogers
2026-05-14 16:10   ` sashiko-bot
2026-05-13 23:04 ` [PATCH v1 09/14] perf test: Fix subtest status alignment for multi-digit indexes Ian Rogers
2026-05-13 23:04 ` [PATCH v1 10/14] perf test: Skip shebang and SPDX comments in shell test descriptions Ian Rogers
2026-05-13 23:04 ` [PATCH v1 11/14] perf test: Split monolithic 'util' test suite into sub-tests Ian Rogers
2026-05-13 23:04 ` [PATCH v1 12/14] perf test: Add -j/--junit option for JUnit XML test reports Ian Rogers
2026-05-13 23:04 ` [PATCH v1 13/14] perf test: Add shell test to validate JUnit XML reporting output Ian Rogers
2026-05-13 23:04 ` [PATCH v1 14/14] perf test: Remove /usr/bin/cc dependency from Intel PT shell test Ian Rogers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260514114244.4320FC2BCB8@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=irogers@google.com \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox