From: Adrian Hunter <adrian.hunter@intel.com>
To: Leo Yan <leo.yan@arm.com>, Peter Zijlstra <peterz@infradead.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Namhyung Kim <namhyung@kernel.org>,
Mark Rutland <mark.rutland@arm.com>, Jiri Olsa <jolsa@kernel.org>,
Ian Rogers <irogers@google.com>,
"Liang, Kan" <kan.liang@linux.intel.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Mike Leach <mike.leach@linaro.org>,
James Clark <james.clark@linaro.org>,
John Garry <john.g.garry@oracle.com>,
Will Deacon <will@kernel.org>,
Yicong Yang <yangyicong@hisilicon.com>,
Jonathan Cameron <jonathan.cameron@huawei.com>,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, coresight@lists.linaro.org
Subject: Re: [PATCH v6 5/8] perf auxtrace: Refactor evlist__enable_event_idx()
Date: Tue, 3 Sep 2024 21:39:50 +0300 [thread overview]
Message-ID: <45a41368-8986-491f-a6cc-20800b857f27@intel.com> (raw)
In-Reply-To: <20240823113306.2310957-6-leo.yan@arm.com>
On 23/08/24 14:33, Leo Yan wrote:
> This commit splits the evlist__enable_event_idx() function into two
> steps. The first step uses a new function evlist__find_cpu_map_idx() to
> find the CPU map index, based on the found CPU map index or a thread map
> index, it continues to call evlist__enable_event_idx() for enabling the
> corresponding event.
>
> Signed-off-by: Leo Yan <leo.yan@arm.com>
> ---
> tools/perf/util/auxtrace.c | 42 +++++++++++++++++++++++++++++---------
> 1 file changed, 32 insertions(+), 10 deletions(-)
>
> diff --git a/tools/perf/util/auxtrace.c b/tools/perf/util/auxtrace.c
> index 87e4f21b6edf..e7b582d92811 100644
> --- a/tools/perf/util/auxtrace.c
> +++ b/tools/perf/util/auxtrace.c
> @@ -651,20 +651,30 @@ int auxtrace_parse_snapshot_options(struct auxtrace_record *itr,
> return -EINVAL;
> }
>
> -static int evlist__enable_event_idx(struct evlist *evlist, struct evsel *evsel, int idx)
> +static int evlist__find_cpu_map_idx(struct evlist *evlist, struct evsel *evsel,
> + int idx)
> {
> bool per_cpu_mmaps = !perf_cpu_map__has_any_cpu(evlist->core.user_requested_cpus);
> + struct perf_cpu evlist_cpu;
> + int cpu_map_idx;
>
> - if (per_cpu_mmaps) {
> - struct perf_cpu evlist_cpu = perf_cpu_map__cpu(evlist->core.all_cpus, idx);
> - int cpu_map_idx = perf_cpu_map__idx(evsel->core.cpus, evlist_cpu);
> + if (!per_cpu_mmaps)
> + return -EINVAL;
>
> - if (cpu_map_idx == -1)
> - return -EINVAL;
> - return perf_evsel__enable_cpu(&evsel->core, cpu_map_idx);
> - }
> + evlist_cpu = perf_cpu_map__cpu(evlist->core.all_cpus, idx);
> + cpu_map_idx = perf_cpu_map__idx(evsel->core.cpus, evlist_cpu);
> + if (cpu_map_idx == -1)
> + return -ENOENT;
> +
> + return cpu_map_idx;
> +}
>
> - return perf_evsel__enable_thread(&evsel->core, idx);
> +static int evlist__enable_event_idx(struct evsel *evsel, int cpu_mode, int idx)
> +{
> + if (cpu_mode)
> + return perf_evsel__enable_cpu(&evsel->core, idx);
> + else
> + return perf_evsel__enable_thread(&evsel->core, idx);
> }
>
> int auxtrace_record__read_finish(struct auxtrace_record *itr, int idx)
> @@ -676,9 +686,21 @@ int auxtrace_record__read_finish(struct auxtrace_record *itr, int idx)
>
> evlist__for_each_entry(itr->evlist, evsel) {
> if (evsel__is_aux_event(evsel)) {
> + int cpu_map_idx;
> +
> if (evsel->disabled)
> return 0;
> - return evlist__enable_event_idx(itr->evlist, evsel, idx);
> +
> + cpu_map_idx = evlist__find_cpu_map_idx(itr->evlist,
> + evsel, idx);
> + /* No map is found in per CPU mmap */
> + if (cpu_map_idx == -ENOENT)
> + return cpu_map_idx;
> +
> + if (cpu_map_idx >= 0)
> + return evlist__enable_event_idx(evsel, 1, cpu_map_idx);
> + else
> + return evlist__enable_event_idx(evsel, 0, idx);
> }
> }
> return -EINVAL;
What about keeping per_cpu_mmaps in auxtrace_record__read_finish()
e.g.
static int evlist__find_evsel_cpu_idx(struct evlist *evlist, struct evsel *evsel, int idx)
{
struct perf_cpu evlist_cpu = perf_cpu_map__cpu(evlist->core.all_cpus, idx);
return perf_cpu_map__idx(evsel->core.cpus, evlist_cpu);
}
int auxtrace_record__read_finish(struct auxtrace_record *itr, int idx)
{
bool per_cpu_mmaps = !perf_cpu_map__has_any_cpu(evlist->core.user_requested_cpus);
struct evsel *evsel;
int evsel_cpu_idx;
if (!itr->evlist)
return -EINVAL;
evlist__for_each_entry(itr->evlist, evsel) {
if (!evsel__is_aux_event(evsel))
continue;
if (per_cpu_mmaps) {
evsel_cpu_idx = evlist__find_evsel_cpu_idx(itr->evlist, evsel, idx);
/* No map is found in per CPU mmap */
if (evsel_cpu_idx < 0)
return -EINVAL;
}
if (evsel->disabled)
return 0;
if (per_cpu_mmaps)
return perf_evsel__enable_cpu(&evsel->core, evsel_cpu_idx);
return perf_evsel__enable_thread(&evsel->core, idx);
}
return -EINVAL;
}
next prev parent reply other threads:[~2024-09-03 18:40 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-23 11:32 [PATCH v6 0/8] perf auxtrace: Support multiple AUX events Leo Yan
2024-08-23 11:32 ` [PATCH v6 1/8] perf/core: Allow multiple AUX PMU events with the same module Leo Yan
2024-08-23 11:40 ` Leo Yan
2024-09-03 10:06 ` Adrian Hunter
2024-09-04 19:35 ` Leo Yan
2024-09-05 7:13 ` Adrian Hunter
2024-08-23 11:33 ` [PATCH v6 2/8] perf auxtrace: Use evsel__is_aux_event() for checking AUX event Leo Yan
2024-08-23 11:33 ` [PATCH v6 3/8] perf auxtrace: Remove unused 'pmu' pointer from struct auxtrace_record Leo Yan
2024-08-23 11:33 ` [PATCH v6 4/8] perf auxtrace: Introduce auxtrace_record__validate_events() Leo Yan
2024-09-03 15:26 ` Adrian Hunter
2024-09-04 21:13 ` Leo Yan
2024-09-05 6:44 ` Adrian Hunter
2024-08-23 11:33 ` [PATCH v6 5/8] perf auxtrace: Refactor evlist__enable_event_idx() Leo Yan
2024-09-03 18:39 ` Adrian Hunter [this message]
2024-08-23 11:33 ` [PATCH v6 6/8] perf auxtrace: Bails out after finding the event for the map index Leo Yan
2024-09-03 18:41 ` Adrian Hunter
2024-08-23 11:33 ` [PATCH v6 7/8] perf auxtrace: Iterate all AUX events when finish reading Leo Yan
2024-08-23 11:33 ` [PATCH v6 8/8] perf arm-spe: Support multiple events in arm_spe_evsel_is_auxtrace() 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=45a41368-8986-491f-a6cc-20800b857f27@intel.com \
--to=adrian.hunter@intel.com \
--cc=acme@kernel.org \
--cc=coresight@lists.linaro.org \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=john.g.garry@oracle.com \
--cc=jolsa@kernel.org \
--cc=jonathan.cameron@huawei.com \
--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=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=suzuki.poulose@arm.com \
--cc=will@kernel.org \
--cc=yangyicong@hisilicon.com \
/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;
as well as URLs for NNTP newsgroup(s).