From: Leo Yan <leo.yan@arm.com>
To: Mike Leach <mike.leach@linaro.org>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>,
James Clark <james.clark@linaro.org>,
Jonathan Corbet <corbet@lwn.net>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 4/6] coresight: perf: Support AUX trace pause and resume
Date: Wed, 2 Apr 2025 13:31:51 +0100 [thread overview]
Message-ID: <20250402123151.GH115840@e132581.arm.com> (raw)
In-Reply-To: <CAJ9a7ViKeqNp_c0+w2mkdujLvzs0UA=Xbm5bG7K-kA86AjJ=eA@mail.gmail.com>
Hi Mike,
On Wed, Apr 02, 2025 at 09:45:20AM +0100, Mike Leach wrote:
[...]
> > > > static void etm_event_start(struct perf_event *event, int flags)
> > > > {
> > > > int cpu = smp_processor_id();
> > > > @@ -463,6 +484,14 @@ static void etm_event_start(struct perf_event *event, int flags)
> > > > if (!csdev)
> > > > goto fail;
> > > >
> > >
> > > Is it possible here that the first call to etm_event_start() also has
> > > the PERF_EF_RESUME flag set?
> >
> > The first call has a flow below, using flag 0 but not PERF_EF_RESUME.
> >
> > etm_event_add()
> > `> etm_event_start(event, 0);
> >
>
> When I looked at the vague comments in the perf source - it seemed to
> imply that ->start() calls could overlap - so the associated event
> that resumes trace could occur at the same time as the initialising
> start from paused for the trace operations.
Good point. A subtle but important thing is the 'cs_etm' event must be
an event group leader, otherwise, the tool reports error:
# perf record -m,64M -e cycles/aux-action=pause,period=10000000/ \
-e cycles/aux-action=resume,period=10/ \
-e cs_etm/aux-action=start-paused/u -- /mnt/sort
Events with aux-action must have AUX area event group leader
If the 'cs_etm' event is the event group leader, it will be always
enabled ahead other PMU events. So etm_event_start(event, 0) is
invoked prior to PMU events enabling. As a result, this can avoid the
race condition you mentioned.
I confirmed with ftrace log:
sort-901 [005] d..3. 1033.827186: etm_event_add <-event_sched_in
sort-901 [005] d..3. 1033.827187: etm_event_start <-etm_event_add
sort-901 [005] d..3. 1033.827283: armpmu_add <-event_sched_in
sort-901 [005] d..3. 1033.827287: armpmu_start <-armpmu_add
sort-901 [005] d..3. 1033.827288: armpmu_event_set_period <-armpmu_start
sort-901 [005] d..3. 1033.827292: armpmu_add <-event_sched_in
sort-901 [005] d..3. 1033.827293: armpmu_start <-armpmu_add
sort-901 [005] d..3. 1033.827294: armpmu_event_set_period <-armpmu_start
sort-901 [005] d..3. 1033.827298: armpmu_filter <-visit_groups_merge.constprop.0.isra.0
sort-901 [005] d..3. 1033.827298: armpmu_enable <-perf_pmu_enable
sort-901 [005] d..3. 1033.827301: armpmu_enable <-perf_pmu_enable
sort-901 [005] d.h1. 1033.827304: armpmu_dispatch_irq <-__handle_irq_event_percpu
sort-901 [005] d.h1. 1033.827306: armpmu_event_update <-armv8pmu_handle_irq
sort-901 [005] d.h1. 1033.827308: armpmu_event_set_period <-armv8pmu_handle_irq
sort-901 [005] d.h.. 1033.827322: perf_event_aux_pause: event=ffff000207503e40 pause=0
> If we are guaranteed this cannot happen then we are good to go!
Now I think we are safe, right? ;)
Thanks,
Leo
next prev parent reply other threads:[~2025-04-02 12:31 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-11 17:04 [PATCH v3 0/6] Arm CoreSight: Support AUX pause and resume Leo Yan
2025-03-11 17:04 ` [PATCH v3 1/6] coresight: etm4x: Extract the trace unit controlling Leo Yan
2025-04-01 8:59 ` Mike Leach
2025-03-11 17:04 ` [PATCH v3 2/6] coresight: Introduce pause and resume APIs for source Leo Yan
2025-04-01 10:01 ` Mike Leach
2025-03-11 17:04 ` [PATCH v3 3/6] coresight: etm4x: Hook pause and resume callbacks Leo Yan
2025-04-01 10:30 ` Mike Leach
2025-03-11 17:04 ` [PATCH v3 4/6] coresight: perf: Support AUX trace pause and resume Leo Yan
2025-04-01 12:50 ` Mike Leach
2025-04-01 15:00 ` Leo Yan
2025-04-02 8:45 ` Mike Leach
2025-04-02 12:31 ` Leo Yan [this message]
2025-04-02 12:56 ` Mike Leach
2025-03-11 17:04 ` [PATCH v3 5/6] coresight: perf: Update buffer on AUX pause Leo Yan
2025-04-01 12:51 ` Suzuki K Poulose
2025-04-01 14:35 ` Mike Leach
2025-04-01 15:08 ` Leo Yan
2025-03-11 17:04 ` [PATCH v3 6/6] Documentation: coresight: Document AUX pause and resume 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=20250402123151.GH115840@e132581.arm.com \
--to=leo.yan@arm.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=corbet@lwn.net \
--cc=coresight@lists.linaro.org \
--cc=james.clark@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.leach@linaro.org \
--cc=suzuki.poulose@arm.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