From: Namhyung Kim <namhyung@kernel.org>
To: Leo Yan <leo.yan@arm.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
James Clark <james.clark@linaro.org>,
Mike Leach <mike.leach@linaro.org>, Will Deacon <will@kernel.org>,
Mark Rutland <mark.rutland@arm.com>, Jiri Olsa <jolsa@kernel.org>,
Ian Rogers <irogers@google.com>,
Adrian Hunter <adrian.hunter@intel.com>,
"Liang, Kan" <kan.liang@linux.intel.com>,
linux-arm-kernel@lists.infradead.org,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/5] perf arm-spe: Define metadata header version 2
Date: Thu, 26 Sep 2024 23:32:41 -0700 [thread overview]
Message-ID: <ZvZRiTYrTOdXUVUk@google.com> (raw)
In-Reply-To: <20240914215458.751802-2-leo.yan@arm.com>
On Sat, Sep 14, 2024 at 10:54:54PM +0100, Leo Yan wrote:
> The first version's metadata header structure doesn't include a field to
> indicate a header version, which is not friendly for extension.
>
> Define the metadata version 2 format with a new header structure and
> extend per CPU's metadata. In the meantime, the old metadata header will
> still be supported for backward compatibility.
>
> Signed-off-by: Leo Yan <leo.yan@arm.com>
> ---
> tools/perf/arch/arm64/util/arm-spe.c | 4 +--
> tools/perf/util/arm-spe.c | 2 +-
> tools/perf/util/arm-spe.h | 38 +++++++++++++++++++++++++++-
> 3 files changed, 40 insertions(+), 4 deletions(-)
>
> diff --git a/tools/perf/arch/arm64/util/arm-spe.c b/tools/perf/arch/arm64/util/arm-spe.c
> index 2be99fdf997d..c2d5c8ca4900 100644
> --- a/tools/perf/arch/arm64/util/arm-spe.c
> +++ b/tools/perf/arch/arm64/util/arm-spe.c
> @@ -41,7 +41,7 @@ static size_t
> arm_spe_info_priv_size(struct auxtrace_record *itr __maybe_unused,
> struct evlist *evlist __maybe_unused)
> {
> - return ARM_SPE_AUXTRACE_PRIV_SIZE;
> + return ARM_SPE_AUXTRACE_V1_PRIV_SIZE;
> }
>
> static int arm_spe_info_fill(struct auxtrace_record *itr,
> @@ -53,7 +53,7 @@ static int arm_spe_info_fill(struct auxtrace_record *itr,
> container_of(itr, struct arm_spe_recording, itr);
> struct perf_pmu *arm_spe_pmu = sper->arm_spe_pmu;
>
> - if (priv_size != ARM_SPE_AUXTRACE_PRIV_SIZE)
> + if (priv_size != ARM_SPE_AUXTRACE_V1_PRIV_SIZE)
> return -EINVAL;
>
> if (!session->evlist->core.nr_mmaps)
> diff --git a/tools/perf/util/arm-spe.c b/tools/perf/util/arm-spe.c
> index 138ffc71b32d..70989b1bae47 100644
> --- a/tools/perf/util/arm-spe.c
> +++ b/tools/perf/util/arm-spe.c
> @@ -1262,7 +1262,7 @@ int arm_spe_process_auxtrace_info(union perf_event *event,
> struct perf_session *session)
> {
> struct perf_record_auxtrace_info *auxtrace_info = &event->auxtrace_info;
> - size_t min_sz = sizeof(u64) * ARM_SPE_AUXTRACE_PRIV_MAX;
> + size_t min_sz = ARM_SPE_AUXTRACE_V1_PRIV_SIZE;
> struct perf_record_time_conv *tc = &session->time_conv;
> const char *cpuid = perf_env__cpuid(session->evlist->env);
> u64 midr = strtol(cpuid, NULL, 16);
> diff --git a/tools/perf/util/arm-spe.h b/tools/perf/util/arm-spe.h
> index 4f4900c18f3e..5416d4e1d15f 100644
> --- a/tools/perf/util/arm-spe.h
> +++ b/tools/perf/util/arm-spe.h
> @@ -12,10 +12,46 @@
> enum {
> ARM_SPE_PMU_TYPE,
> ARM_SPE_PER_CPU_MMAPS,
> + ARM_SPE_AUXTRACE_V1_PRIV_MAX,
> +};
> +
> +#define ARM_SPE_AUXTRACE_V1_PRIV_SIZE \
> + (ARM_SPE_AUXTRACE_V1_PRIV_MAX * sizeof(u64))
> +
> +enum {
> + /*
> + * The old metadata format (defined above) does not include a
> + * field for version number. Version 1 is reserved and starts
> + * from version 2.
> + */
> + ARM_SPE_HEADER_VERSION,
> + /* Number of sizeof(u64) */
> + ARM_SPE_HEADER_SIZE,
> + /* PMU type shared by CPUs */
> + ARM_SPE_SHARED_PMU_TYPE,
> + /* Number of CPUs */
> + ARM_SPE_CPUS_NUM,
> ARM_SPE_AUXTRACE_PRIV_MAX,
> };
Why don't you define something like struct arm_spe_header_v2 ?
Thanks,
Namhyung
>
> -#define ARM_SPE_AUXTRACE_PRIV_SIZE (ARM_SPE_AUXTRACE_PRIV_MAX * sizeof(u64))
> +enum {
> + /* Magic number */
> + ARM_SPE_MAGIC,
> + /* CPU logical number in system */
> + ARM_SPE_CPU,
> + /* Number of parameters */
> + ARM_SPE_CPU_NR_PARAMS,
> + /* CPU MIDR */
> + ARM_SPE_CPU_MIDR,
> + /* Associated PMU type */
> + ARM_SPE_CPU_PMU_TYPE,
> + /* Minimal interval */
> + ARM_SPE_CAP_MIN_IVAL,
> + ARM_SPE_CPU_PRIV_MAX,
> +};
> +
> +#define ARM_SPE_HEADER_CURRENT_VERSION 2
> +
>
> union perf_event;
> struct perf_session;
> --
> 2.34.1
>
next prev parent reply other threads:[~2024-09-27 6:32 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-14 21:54 [PATCH v2 0/5] perf arm-spe: Introduce metadata version 2 Leo Yan
2024-09-14 21:54 ` [PATCH v2 1/5] perf arm-spe: Define metadata header " Leo Yan
2024-09-27 6:32 ` Namhyung Kim [this message]
2024-09-27 8:05 ` Leo Yan
2024-09-14 21:54 ` [PATCH v2 2/5] perf arm-spe: Calculate meta data size Leo Yan
2024-09-27 6:14 ` Namhyung Kim
2024-09-27 8:07 ` Leo Yan
2024-09-14 21:54 ` [PATCH v2 3/5] perf arm-spe: Save per CPU information in metadata Leo Yan
2024-09-27 6:21 ` Namhyung Kim
2024-09-27 8:16 ` Leo Yan
2024-09-14 21:54 ` [PATCH v2 4/5] perf arm-spe: Support metadata version 2 Leo Yan
2024-09-27 6:35 ` Namhyung Kim
2024-09-27 8:32 ` Leo Yan
2024-09-14 21:54 ` [PATCH v2 5/5] perf arm-spe: Dump metadata with " Leo Yan
2024-09-26 16:20 ` [PATCH v2 0/5] perf arm-spe: Introduce metadata " Leo Yan
2024-09-27 6:10 ` Namhyung Kim
2024-09-27 8:41 ` Leo Yan
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=ZvZRiTYrTOdXUVUk@google.com \
--to=namhyung@kernel.org \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=jolsa@kernel.org \
--cc=kan.liang@linux.intel.com \
--cc=leo.yan@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mike.leach@linaro.org \
--cc=will@kernel.org \
/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