Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1537000
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] perf/x86: Fix exclusion of BTS and LBR for Goldmont |
| Date | 2016-12-06 15:10 +0100 |
| Message-ID | <sLoBs-335-23@gated-at.bofh.it> (permalink) |
| References | <sK5hv-1NF-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
For some reason this patch never hit my inbox, it could be because
you're wrecked the Cc line and either infradead or my mta dropped the
email because of that.
On Fri, Dec 02, 2016 at 03:17:32PM -0800, Andi Kleen wrote:
> From: Andi Kleen <ak@linux.intel.com>
>
> The earlier patch ccbebba4 allowed enabling PT and LBR at the same
SHAs should be 12 chars.
> time on Goldmont. However it also allowed enabling BTS and LBR
> at the same time, which is still not supported. Fix this by
> bypassing the check only for PT.
>
> Marking for stable because this allows crashing kernels. Also
> should be merged for 4.9.
>
> Fixes: ccbebba4 ("erf/x86/intel/pt: Bypass PT vs. LBR exclusivity if the core supports it")
same
> Cc: alexander.shishkin@intel.com
> Cc: kan.liang@intel.com
> Cc: stable@vger.kernel.org # 4.6+
> Signed-off-by: Andi Kleen <ak@linux.intel.com>
> ---
> arch/x86/events/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c
> index d0efb5cb1b00..baa1eed55e88 100644
> --- a/arch/x86/events/core.c
> +++ b/arch/x86/events/core.c
> @@ -364,7 +364,7 @@ int x86_add_exclusive(unsigned int what)
> {
> int i;
>
> - if (x86_pmu.lbr_pt_coexist)
> + if (what == x86_lbr_exclusive_pt && x86_pmu.lbr_pt_coexist)
> return 0;
This would also allow PT & BTS at the same time, is that a supported
configuration?
>
> if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) {
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] perf/x86: Fix exclusion of BTS and LBR for Goldmont Andi Kleen <andi@firstfloor.org> - 2016-12-03 00:20 +0100
Re: [PATCH] perf/x86: Fix exclusion of BTS and LBR for Goldmont Peter Zijlstra <peterz@infradead.org> - 2016-12-06 15:10 +0100
Re: [PATCH] perf/x86: Fix exclusion of BTS and LBR for Goldmont Andi Kleen <andi@firstfloor.org> - 2016-12-06 16:00 +0100
csiph-web