From: Peter Zijlstra <peterz@infradead.org>
To: Mark Barnett <mark.barnett@arm.com>
Cc: mingo@redhat.com, acme@kernel.org, namhyung@kernel.org,
irogers@google.com, ben.gainey@arm.com, deepak.surti@arm.com,
ak@linux.intel.com, will@kernel.org, james.clark@arm.com,
mark.rutland@arm.com, alexander.shishkin@linux.intel.com,
jolsa@kernel.org, adrian.hunter@intel.com,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 3/5] perf: Allow adding fixed random jitter to the alternate sampling period
Date: Wed, 12 Mar 2025 10:39:47 +0100 [thread overview]
Message-ID: <20250312093947.GJ19424@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <431a5acb-4906-4095-8dec-b2d824adaac6@arm.com>
On Tue, Mar 11, 2025 at 05:22:16PM +0000, Mark Barnett wrote:
> > @@ -9979,6 +9985,8 @@ static int __perf_event_overflow(struct perf_event *event,
> > int throttle, struct perf_sample_data *data,
> > struct pt_regs *regs)
> > {
> > + struct hw_perf_event *hwc = &event->hw;
> > + u64 sample_period;
> > int events = atomic_read(&event->event_limit);
> > int ret = 0;
> > @@ -9989,15 +9997,50 @@ static int __perf_event_overflow(struct perf_event *event,
> > if (unlikely(!is_sampling_event(event)))
> > return 0;
> > - ret = __perf_event_account_interrupt(event, throttle);
> > + /*
> > + * High Freq samples are injected inside the larger period:
> > + *
> > + * |------------|-|------------|-|
> > + * P0 HF P1 HF
> > + *
> > + * By ignoring the HF samples, we measure the actual period.
> > + */
> > + if (!(hwc->state & PERF_HES_HF_SAMPLE))
> > + ret = __perf_event_account_interrupt(event, throttle);
>
> The high-frequency samples should still contribute to interrupt
> accounting/throttling, right? We'd just need to put guards around the
> adaptive period stuff so that HF samples don't contribute to the frequency
> training.
Yeah, I suppose it should. This means breaking up that function but that
isn't hard.
next prev parent reply other threads:[~2025-03-12 9:39 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-07 20:22 [PATCH v3 0/5] A mechanism for efficient support for per-function metrics mark.barnett
2025-03-07 20:22 ` [PATCH v3 1/5] perf: Record sample last_period before updating mark.barnett
2025-03-07 20:22 ` [PATCH v3 2/5] perf: Allow periodic events to alternate between two sample periods mark.barnett
2025-03-10 12:44 ` Peter Zijlstra
2025-03-07 20:22 ` [PATCH v3 3/5] perf: Allow adding fixed random jitter to the alternate sampling period mark.barnett
2025-03-10 12:47 ` Peter Zijlstra
2025-03-10 16:27 ` Mark Barnett
2025-03-11 11:31 ` Peter Zijlstra
2025-03-11 11:35 ` Peter Zijlstra
2025-03-12 10:44 ` Peter Zijlstra
2025-03-11 11:37 ` Peter Zijlstra
2025-03-11 17:22 ` Mark Barnett
2025-03-12 9:39 ` Peter Zijlstra [this message]
2025-03-07 20:22 ` [PATCH v3 4/5] tools/perf: Modify event parser to support alt-period term mark.barnett
2025-03-07 20:22 ` [PATCH v3 5/5] tools/perf: Modify event parser to support alt-period-jitter term mark.barnett
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=20250312093947.GJ19424@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=ben.gainey@arm.com \
--cc=deepak.surti@arm.com \
--cc=irogers@google.com \
--cc=james.clark@arm.com \
--cc=jolsa@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.barnett@arm.com \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.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