From: Anshuman Khandual <anshuman.khandual@arm.com> To: Suzuki K Poulose <suzuki.poulose@arm.com>, coresight@lists.linaro.org Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, tamas.zsoldos@arm.com, al.grant@arm.com, leo.yan@linaro.org, mike.leach@linaro.org, mathieu.poirier@linaro.org, jinlmao@qti.qualcomm.com, Peter Zijlstra <peterz@infradead.org>, Will Deacon <will@kernel.org> Subject: Re: [PATCH v2 09/10] coresight: trbe: End the AUX handle on truncation Date: Fri, 30 Jul 2021 11:24:44 +0530 [thread overview] Message-ID: <d7c68b50-1537-32d9-6803-cf0c5973c880@arm.com> (raw) In-Reply-To: <20210723124611.3828908-10-suzuki.poulose@arm.com> On 7/23/21 6:16 PM, Suzuki K Poulose wrote: > When we detect that there isn't enough space left to start > a meaningful session, we disable the TRBE, marking the buffer > as TRUNCATED. But we delay the notification to the perf layer > by perf_aux_output_end() until the event is scheduled out. via the CoreSight PMU layer's stop event ? > This will cause significant black outs in the trace. Now that > the CoreSight PMU layer can handle a closed "AUX" handle > properly, we can close the handle as soon as we detect the > case, allowing the userspace to collect and re-enable the > event. > > Also, while in the IRQ handler, move the irq_work_run() after > we have updated the handle, to make sure the "TRUNCATED" flag > causes the event to be disabled as soon as possible. Makes sense. Minor nit. Commit message here should be reformatted to be expanded upto 75 character width. > > Cc: Anshuman Khandual <anshuman.khandual@arm.com> > Cc: Mathieu Poirier <mathieu.poirier@linaro.org> > Cc: Mike Leach <mike.leach@linaro.org> > Cc: Leo Yan <leo.yan@linaro.org> > Cc: Peter Zijlstra (Intel) <peterz@infradead.org> > Cc: Will Deacon <will@kernel.org> > Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> > --- > drivers/hwtracing/coresight/coresight-trbe.c | 25 ++++++++++++-------- > 1 file changed, 15 insertions(+), 10 deletions(-) > > diff --git a/drivers/hwtracing/coresight/coresight-trbe.c b/drivers/hwtracing/coresight/coresight-trbe.c > index 6d6aad171c72..e7567727e8fc 100644 > --- a/drivers/hwtracing/coresight/coresight-trbe.c > +++ b/drivers/hwtracing/coresight/coresight-trbe.c > @@ -134,6 +134,7 @@ static void trbe_stop_and_truncate_event(struct perf_output_handle *handle) > trbe_drain_and_disable_local(); > perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED | > PERF_AUX_FLAG_CORESIGHT_FORMAT_RAW); > + perf_aux_output_end(handle, 0); > *this_cpu_ptr(buf->cpudata->drvdata->handle) = NULL; > } > > @@ -699,7 +700,7 @@ static void trbe_handle_spurious(struct perf_output_handle *handle) > isb(); > } > > -static void trbe_handle_overflow(struct perf_output_handle *handle) > +static int trbe_handle_overflow(struct perf_output_handle *handle) > { > struct perf_event *event = handle->event; > struct trbe_buf *buf = etm_perf_sink_config(handle); > @@ -728,10 +729,10 @@ static void trbe_handle_overflow(struct perf_output_handle *handle) > */ > trbe_drain_and_disable_local(); > *this_cpu_ptr(buf->cpudata->drvdata->handle) = NULL; > - return; > + return -EINVAL; > } > > - __arm_trbe_enable(buf, handle); > + return __arm_trbe_enable(buf, handle); > } > > static bool is_perf_trbe(struct perf_output_handle *handle) > @@ -762,6 +763,7 @@ static irqreturn_t arm_trbe_irq_handler(int irq, void *dev) > struct perf_output_handle *handle = *handle_ptr; > enum trbe_fault_action act; > u64 status; > + bool truncated = false; > > /* Reads to TRBSR_EL1 is fine when TRBE is active */ > status = read_sysreg_s(SYS_TRBSR_EL1); > @@ -786,24 +788,27 @@ static irqreturn_t arm_trbe_irq_handler(int irq, void *dev) > if (!is_perf_trbe(handle)) > return IRQ_NONE; > > - /* > - * Ensure perf callbacks have completed, which may disable > - * the trace buffer in response to a TRUNCATION flag. > - */ > - irq_work_run(); > - > act = trbe_get_fault_act(status); > switch (act) { > case TRBE_FAULT_ACT_WRAP: > - trbe_handle_overflow(handle); > + truncated = !!trbe_handle_overflow(handle); > break; > case TRBE_FAULT_ACT_SPURIOUS: > trbe_handle_spurious(handle); > break; > case TRBE_FAULT_ACT_FATAL: > trbe_stop_and_truncate_event(handle); > + truncated = true; > break; > } > + > + /* > + * If the buffer was truncated, ensure perf callbacks > + * have completed, which will disable the event. > + */ > + if (truncated) > + irq_work_run(); > + > return IRQ_HANDLED; > } > > LGTM. Reviewed-by: Anshuman Khandual <anshuman.khandual@arm.com>
next prev parent reply other threads:[~2021-07-30 5:54 UTC|newest] Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-23 12:46 [PATCH v2 00/10] coresight: TRBE and Self-Hosted trace fixes Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 01/10] coresight: etm4x: Save restore TRFCR_EL1 Suzuki K Poulose 2021-07-30 3:05 ` Anshuman Khandual 2021-07-23 12:46 ` [PATCH v2 02/10] coresight: etm4x: Use Trace Filtering controls dynamically Suzuki K Poulose 2021-07-30 3:48 ` Anshuman Khandual 2021-07-30 11:29 ` Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 03/10] coresight: etm-pmu: Ensure the AUX handle is valid Suzuki K Poulose 2021-07-30 4:14 ` Anshuman Khandual 2021-07-23 12:46 ` [PATCH v2 04/10] coresight: trbe: Ensure the format flag is set on truncation Suzuki K Poulose 2021-07-30 4:26 ` Anshuman Khandual 2021-07-30 11:37 ` Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 05/10] coresight: trbe: Drop duplicate TRUNCATE flags Suzuki K Poulose 2021-07-30 4:47 ` Anshuman Khandual 2021-07-30 12:58 ` Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 06/10] coresight: trbe: Fix handling of spurious interrupts Suzuki K Poulose 2021-07-30 5:15 ` Anshuman Khandual 2021-07-30 12:57 ` Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 07/10] coresight: trbe: Do not truncate buffer on IRQ Suzuki K Poulose 2021-07-26 12:34 ` Mike Leach 2021-07-26 16:01 ` Suzuki K Poulose 2021-07-27 10:46 ` Mike Leach 2021-07-27 13:06 ` Suzuki K Poulose 2021-07-28 9:25 ` Suzuki K Poulose 2021-07-23 12:46 ` [PATCH v2 08/10] coresight: trbe: Unify the enabling sequence Suzuki K Poulose 2021-07-30 5:40 ` Anshuman Khandual 2021-07-23 12:46 ` [PATCH v2 09/10] coresight: trbe: End the AUX handle on truncation Suzuki K Poulose 2021-07-30 5:54 ` Anshuman Khandual [this message] 2021-07-23 12:46 ` [PATCH v2 10/10] coresight: trbe: Prohibit trace before disabling TRBE Suzuki K Poulose 2021-07-30 6:58 ` Anshuman Khandual 2021-07-23 13:45 ` [PATCH v2 00/10] coresight: TRBE and Self-Hosted trace fixes Suzuki K Poulose
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=d7c68b50-1537-32d9-6803-cf0c5973c880@arm.com \ --to=anshuman.khandual@arm.com \ --cc=al.grant@arm.com \ --cc=coresight@lists.linaro.org \ --cc=jinlmao@qti.qualcomm.com \ --cc=leo.yan@linaro.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-kernel@vger.kernel.org \ --cc=mathieu.poirier@linaro.org \ --cc=mike.leach@linaro.org \ --cc=peterz@infradead.org \ --cc=suzuki.poulose@arm.com \ --cc=tamas.zsoldos@arm.com \ --cc=will@kernel.org \ --subject='Re: [PATCH v2 09/10] coresight: trbe: End the AUX handle on truncation' \ /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
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).