From: "Liang, Kan" <kan.liang@linux.intel.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: acme@kernel.org, mingo@redhat.com, linux-kernel@vger.kernel.org,
tglx@linutronix.de, jolsa@kernel.org, eranian@google.com,
alexander.shishkin@linux.intel.com, ak@linux.intel.com
Subject: Re: [PATCH 03/22] perf/x86/intel: Support adaptive PEBSv4
Date: Tue, 19 Mar 2019 17:20:04 -0400 [thread overview]
Message-ID: <948ed187-bfe8-c8f2-83b1-88db7af88c03@linux.intel.com> (raw)
In-Reply-To: <20190319144748.GH5996@hirez.programming.kicks-ass.net>
On 3/19/2019 10:47 AM, Peter Zijlstra wrote:
>> @@ -933,6 +998,19 @@ pebs_update_state(bool needed_cb, struct cpu_hw_events *cpuc, struct pmu *pmu)
>> update = true;
>> }
>>
>> + if (x86_pmu.intel_cap.pebs_baseline && add) {
>> + u64 pebs_data_cfg;
>> +
>> + pebs_data_cfg = pebs_update_adaptive_cfg(event);
>> +
>> + /* Update pebs_record_size if new event requires more data. */
>> + if (pebs_data_cfg & ~cpuc->pebs_data_cfg) {
>> + cpuc->pebs_data_cfg |= pebs_data_cfg;
>> + adaptive_pebs_record_size_update();
>> + update = true;
>> + }
>> + }
>> +
>> if (update)
>> pebs_update_threshold(cpuc);
>> }
> Hurmph.. this only grows the PEBS record.
>
Yes, the PEBS record doesn't shrink on the del. Because we have to go
through all the existing pebs events for an accurate config. I think it
doesn't worth it. There is no harmful for a bigger PEBS record, except
little performance impacts. But that's rare case. For most cases, we
usually apply the same pebs config for all pebs events.
>
>> @@ -947,7 +1025,7 @@ void intel_pmu_pebs_add(struct perf_event *event)
>> if (hwc->flags & PERF_X86_EVENT_LARGE_PEBS)
>> cpuc->n_large_pebs++;
>>
>> - pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
>> + pebs_update_state(needed_cb, cpuc, event, true);
>> }
>>
>> void intel_pmu_pebs_enable(struct perf_event *event)
>> @@ -965,6 +1043,14 @@ void intel_pmu_pebs_enable(struct perf_event *event)
>> else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
>> cpuc->pebs_enabled |= 1ULL << 63;
>>
>> + if (x86_pmu.intel_cap.pebs_baseline) {
>> + hwc->config |= ICL_EVENTSEL_ADAPTIVE;
>> + if (cpuc->pebs_data_cfg != cpuc->active_pebs_data_cfg) {
>> + wrmsrl(MSR_PEBS_DATA_CFG, cpuc->pebs_data_cfg);
>> + cpuc->active_pebs_data_cfg = cpuc->pebs_data_cfg;
>> + }
>> + }
>> +
>> /*
>> * Use auto-reload if possible to save a MSR write in the PMI.
>> * This must be done in pmu::start(), because PERF_EVENT_IOC_PERIOD.
>> @@ -991,7 +1077,12 @@ void intel_pmu_pebs_del(struct perf_event *event)
>> if (hwc->flags & PERF_X86_EVENT_LARGE_PEBS)
>> cpuc->n_large_pebs--;
>>
>> - pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
>> + /* Clear both pebs_data_cfg and pebs_record_size for first PEBS. */
> Weird comment..
>
>> + if (x86_pmu.intel_cap.pebs_baseline && !cpuc->n_pebs) {
>> + cpuc->pebs_data_cfg = 0;
>> + cpuc->pebs_record_size = sizeof(struct pebs_basic);
>> + }
>> + pebs_update_state(needed_cb, cpuc, event, false);
> Why do we have to reset record_size? That'll be updated in
> pebs_update_state() on the next add.
>
The record_size should be reset for the first PEBS events.
Right, I can move the reset in pebs_update_state().
Thanks,
Kan
next prev parent reply other threads:[~2019-03-19 21:20 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-18 21:41 [PATCH 00/22] perf: Add Icelake support kan.liang
2019-03-18 21:41 ` [PATCH 01/22] perf/core: Support outputting registers from a separate array kan.liang
2019-03-19 13:00 ` Peter Zijlstra
2019-03-19 14:13 ` Peter Zijlstra
2019-03-18 21:41 ` [PATCH 02/22] perf/x86/intel: Extract memory code PEBS parser for reuse kan.liang
2019-03-19 13:14 ` Peter Zijlstra
2019-03-18 21:41 ` [PATCH 03/22] perf/x86/intel: Support adaptive PEBSv4 kan.liang
2019-03-19 14:47 ` Peter Zijlstra
2019-03-19 16:03 ` Andi Kleen
2019-03-19 16:11 ` Peter Zijlstra
2019-03-19 21:20 ` Liang, Kan [this message]
2019-03-19 21:38 ` Andi Kleen
2019-03-20 15:58 ` Peter Zijlstra
2019-03-18 21:41 ` [PATCH 04/22] perf/x86/lbr: Avoid reading the LBRs when adaptive PEBS handles them kan.liang
2019-03-18 21:41 ` [PATCH 05/22] perf/x86: Support constraint ranges kan.liang
2019-03-19 14:53 ` Peter Zijlstra
2019-03-19 15:27 ` Peter Zijlstra
2019-03-19 15:57 ` Andi Kleen
2019-03-19 16:09 ` Peter Zijlstra
2019-03-18 21:41 ` [PATCH 06/22] perf/x86/intel: Add Icelake support kan.liang
2019-03-20 0:08 ` Stephane Eranian
2019-03-20 14:20 ` Liang, Kan
2019-03-18 21:41 ` [PATCH 07/22] perf/x86/intel/cstate: " kan.liang
2019-03-18 21:41 ` [PATCH 08/22] perf/x86/intel/rapl: " kan.liang
2019-03-18 21:41 ` [PATCH 09/22] perf/x86/msr: " kan.liang
2019-03-18 21:41 ` [PATCH 10/22] perf/x86/intel/uncore: Add Intel Icelake uncore support kan.liang
2019-03-18 21:41 ` [PATCH 11/22] perf/core: Support a REMOVE transaction kan.liang
2019-03-19 15:29 ` Peter Zijlstra
2019-03-18 21:41 ` [PATCH 12/22] perf/x86/intel: Basic support for metrics counters kan.liang
2019-03-18 21:41 ` [PATCH 13/22] perf/x86/intel: Support overflows on SLOTS kan.liang
2019-03-18 21:41 ` [PATCH 14/22] perf/x86/intel: Support hardware TopDown metrics kan.liang
2019-03-18 21:41 ` [PATCH 15/22] perf/x86/intel: Set correct weight for topdown subevent counters kan.liang
2019-03-18 21:41 ` [PATCH 16/22] perf/x86/intel: Export new top down events for Icelake kan.liang
2019-03-18 21:41 ` [PATCH 17/22] perf/x86/intel: Disable sampling read slots and topdown kan.liang
2019-03-18 21:41 ` [PATCH 18/22] perf/x86/intel: Support CPUID 10.ECX to disable fixed counters kan.liang
2019-03-18 21:41 ` [PATCH 19/22] perf, tools: Add support for recording and printing XMM registers kan.liang
2019-03-18 21:41 ` [PATCH 20/22] perf, tools, stat: Support new per thread TopDown metrics kan.liang
2019-03-18 21:41 ` [PATCH 21/22] perf, tools: Add documentation for topdown metrics kan.liang
2019-03-18 21:41 ` [PATCH 22/22] perf vendor events intel: Add JSON files for Icelake kan.liang
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=948ed187-bfe8-c8f2-83b1-88db7af88c03@linux.intel.com \
--to=kan.liang@linux.intel.com \
--cc=acme@kernel.org \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=eranian@google.com \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
/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