From: German Gomez <german.gomez@arm.com>
To: Leo Yan <leo.yan@linaro.org>, Namhyung Kim <namhyung@kernel.org>,
James Clark <james.clark@arm.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
Jiri Olsa <jolsa@redhat.com>, Ingo Molnar <mingo@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
LKML <linux-kernel@vger.kernel.org>,
Andi Kleen <ak@linux.intel.com>, Ian Rogers <irogers@google.com>,
Stephane Eranian <eranian@google.com>,
Adrian Hunter <adrian.hunter@intel.com>
Subject: Re: [RFC] perf arm-spe: Track task context switch for cpu-mode events
Date: Mon, 18 Oct 2021 12:01:27 +0100 [thread overview]
Message-ID: <eae1a617-2624-dc1f-1ddb-ba9f5600819d@arm.com> (raw)
In-Reply-To: <8a1eafe3-d19e-40d6-f659-de0e9daa5877@arm.com>
Hi,
What do you thing of the patch below? PERF_RECORD_SWITCH events are also
included for tracing forks. The patch would sit on top of Namhyung's.
Thanks,
German
On 12/10/2021 12:07, German Gomez wrote:
> Hi, Leo and Namhyung,
>
> I want to make sure I'm on the same page as you regarding this topic.
>
> [...]
>
> If we are not considering patching the driver at this stage, so we allow
> hardware tracing on non-root namespaces. I think we could proceed like
> this:
>
> - For userspace, always use context-switch events as they are
> accurate and consistent with namespaces.
> - For kernel tracing, if context packets are enabled, use them, but
> warn the user that the PIDs correspond to the root namespace.
> - Otherwise, use context-switch events and warn the user of the time
> inaccuracies.
>
> Later, if the driver is patched to disable context packets outside the
> root namespace, kernel tracing could fall back to using context-switch
> events and warn the user with a single message about the time
> inaccuracies.
>
> If we are aligned, we could collect your feedback and share an updated
> patch that considers the warnings.
>
> Many thanks
> Best regards
---
tools/perf/util/arm-spe.c | 66 +++++++++++++++++++++++++++++++++++++--
1 file changed, 63 insertions(+), 3 deletions(-)
diff --git a/tools/perf/util/arm-spe.c b/tools/perf/util/arm-spe.c
index 708323d7c93c..6a2f7a484a80 100644
--- a/tools/perf/util/arm-spe.c
+++ b/tools/perf/util/arm-spe.c
@@ -71,6 +71,17 @@ struct arm_spe {
u64 kernel_start;
unsigned long num_events;
+
+ /*
+ * Used for PID tracing.
+ */
+ u8 exclude_kernel;
+
+ /*
+ * Warning messages.
+ */
+ u8 warn_context_pkt_namesapce;
+ u8 warn_context_switch_ev_accuracy;
};
struct arm_spe_queue {
@@ -586,11 +597,42 @@ static bool arm_spe__is_timeless_decoding(struct arm_spe *spe)
return timeless_decoding;
}
+static bool arm_spe__is_exclude_kernel(struct arm_spe *spe) {
+ struct evsel *evsel;
+ struct evlist *evlist = spe->session->evlist;
+
+ evlist__for_each_entry(evlist, evsel) {
+ if (evsel->core.attr.type == spe->pmu_type && evsel->core.attr.exclude_kernel)
+ return true;
+ }
+
+ return false;
+}
+
static void arm_spe_set_pid_tid_cpu(struct arm_spe *spe,
struct auxtrace_queue *queue)
{
struct arm_spe_queue *speq = queue->priv;
- pid_t tid;
+ pid_t tid = machine__get_current_tid(spe->machine, speq->cpu);
+ u64 context_id = speq->decoder->record.context_id;
+
+ /*
+ * We're tracing the kernel.
+ */
+ if (!spe->exclude_kernel) {
+ /*
+ * Use CONTEXT packets in kernel tracing if available and warn the user of the
+ * values correspond to the root PID namespace.
+ *
+ * If CONTEXT packets aren't available but context-switch events are, warn the user
+ * of the time inaccuracies.
+ */
+ if (context_id != (u64) -1) {
+ tid = speq->decoder->record.context_id;
+ spe->warn_context_pkt_namesapce = true;
+ } else if (tid != -1 && context_id == (u64) -1)
+ spe->warn_context_switch_ev_accuracy = true;
+ }
tid = machine__get_current_tid(spe->machine, speq->cpu);
if (tid != -1) {
@@ -740,7 +782,8 @@ static int arm_spe_process_event(struct perf_session *session,
if (err)
return err;
- if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE)
+ if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE ||
+ event->header.type == PERF_RECORD_SWITCH)
err = arm_spe_context_switch(spe, event, sample);
}
@@ -807,7 +850,20 @@ static int arm_spe_flush(struct perf_session *session __maybe_unused,
return arm_spe_process_timeless_queues(spe, -1,
MAX_TIMESTAMP - 1);
- return arm_spe_process_queues(spe, MAX_TIMESTAMP);
+ ret = arm_spe_process_queues(spe, MAX_TIMESTAMP);
+
+ if (spe->warn_context_pkt_namesapce)
+ ui__warning(
+ "Arm SPE CONTEXT packets used for PID/TID tracing.\n\n"
+ "PID values correspond to the root PID namespace.\n\n");
+
+ if (spe->warn_context_switch_ev_accuracy)
+ ui__warning(
+ "No Arm SPE CONTEXT packets found within traces.\n\n"
+ "Fallback to PERF_RECORD_SWITCH events for PID/TID tracing will have\n"
+ "workload-dependant timing inaccuracies.\n\n");
+
+ return ret;
}
static void arm_spe_free_queue(void *priv)
@@ -1083,6 +1139,10 @@ int arm_spe_process_auxtrace_info(union perf_event *event,
spe->timeless_decoding = arm_spe__is_timeless_decoding(spe);
+ spe->exclude_kernel = arm_spe__is_exclude_kernel(spe);
+ spe->warn_context_pkt_namesapce = false;
+ spe->warn_context_switch_ev_accuracy = false;
+
/*
* The synthesized event PERF_RECORD_TIME_CONV has been handled ahead
* and the parameters for hardware clock are stored in the session
--
2.17.1
next prev parent reply other threads:[~2021-10-18 11:01 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-16 0:17 Namhyung Kim
2021-09-16 13:54 ` Leo Yan
2021-09-16 21:01 ` Namhyung Kim
2021-09-23 14:23 ` Leo Yan
2021-09-23 16:01 ` Namhyung Kim
2021-09-30 18:47 ` Stephane Eranian
2021-10-01 10:44 ` James Clark
2021-10-01 18:22 ` Stephane Eranian
2021-10-04 15:19 ` Leo Yan
2021-09-30 15:08 ` James Clark
2021-10-04 6:26 ` Leo Yan
2021-10-05 10:06 ` German Gomez
2021-10-06 9:36 ` Leo Yan
2021-10-06 16:09 ` Namhyung Kim
2021-10-08 11:07 ` German Gomez
2021-10-09 0:12 ` Namhyung Kim
2021-10-11 13:58 ` German Gomez
2021-10-11 14:29 ` Leo Yan
2021-10-12 11:07 ` German Gomez
2021-10-18 11:01 ` German Gomez [this message]
2021-10-18 13:23 ` Leo Yan
2021-10-19 12:21 ` German Gomez
2021-10-29 10:51 ` German Gomez
2021-11-01 15:11 ` Leo Yan
2021-11-01 15:36 ` German Gomez
2021-11-01 15:42 ` German Gomez
2021-10-06 14:06 ` James Clark
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=eae1a617-2624-dc1f-1ddb-ba9f5600819d@arm.com \
--to=german.gomez@arm.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=eranian@google.com \
--cc=irogers@google.com \
--cc=james.clark@arm.com \
--cc=jolsa@redhat.com \
--cc=leo.yan@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.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
all inboxes | Powered by JetHome®