All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrii Nakryiko <andrii@kernel.org>
To: x86@kernel.org, peterz@infradead.org, mingo@redhat.com,
	tglx@linutronix.de
Cc: bpf@vger.kernel.org, linux-kernel@vger.kernel.org,
	jolsa@kernel.org, song@kernel.org, kernel-team@meta.com,
	Andrii Nakryiko <andrii@kernel.org>,
	Sandipan Das <sandipan.das@amd.com>
Subject: [PATCH v5 4/4] perf/x86/amd: don't reject non-sampling events with configured LBR
Date: Mon,  1 Apr 2024 19:21:18 -0700	[thread overview]
Message-ID: <20240402022118.1046049-5-andrii@kernel.org> (raw)
In-Reply-To: <20240402022118.1046049-1-andrii@kernel.org>

Now that it's possible to capture LBR on AMD CPU from BPF at arbitrary
point, there is no reason to artificially limit this feature to just
sampling events. So corresponding check is removed. AFAIU, there is no
correctness implications of doing this (and it was possible to bypass
this check by just setting perf_event's sample_period to 1 anyways, so
it doesn't guard all that much).

Reviewed-by: Sandipan Das <sandipan.das@amd.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
---
 arch/x86/events/amd/lbr.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/arch/x86/events/amd/lbr.c b/arch/x86/events/amd/lbr.c
index 33d0a45c0cd3..19c7b76e21bc 100644
--- a/arch/x86/events/amd/lbr.c
+++ b/arch/x86/events/amd/lbr.c
@@ -310,10 +310,6 @@ int amd_pmu_lbr_hw_config(struct perf_event *event)
 {
 	int ret = 0;
 
-	/* LBR is not recommended in counting mode */
-	if (!is_sampling_event(event))
-		return -EINVAL;
-
 	ret = amd_pmu_lbr_setup_filter(event);
 	if (!ret)
 		event->attach_state |= PERF_ATTACH_SCHED_CB;
-- 
2.43.0


  parent reply	other threads:[~2024-04-02  2:21 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-02  2:21 [PATCH v5 0/4] perf/x86/amd: add LBR capture support outside of hardware events Andrii Nakryiko
2024-04-02  2:21 ` [PATCH v5 1/4] perf/x86/amd: ensure amd_pmu_core_disable_all() is always inlined Andrii Nakryiko
2024-04-03  7:40   ` [tip: perf/core] perf/x86/amd: Ensure " tip-bot2 for Andrii Nakryiko
2024-04-02  2:21 ` [PATCH v5 2/4] perf/x86/amd: avoid taking branches before disabling LBR Andrii Nakryiko
2024-04-03  7:40   ` [tip: perf/core] perf/x86/amd: Avoid " tip-bot2 for Andrii Nakryiko
2024-04-02  2:21 ` [PATCH v5 3/4] perf/x86/amd: support capturing LBR from software events Andrii Nakryiko
2024-04-03  7:40   ` [tip: perf/core] perf/x86/amd: Support " tip-bot2 for Andrii Nakryiko
2024-04-02  2:21 ` Andrii Nakryiko [this message]
2024-04-03  7:40   ` [tip: perf/core] perf/x86/amd: Don't reject non-sampling events with configured LBR tip-bot2 for Andrii Nakryiko
2024-04-03  7:19 ` [PATCH v5 0/4] perf/x86/amd: add LBR capture support outside of hardware events Ingo Molnar

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=20240402022118.1046049-5-andrii@kernel.org \
    --to=andrii@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=jolsa@kernel.org \
    --cc=kernel-team@meta.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=sandipan.das@amd.com \
    --cc=song@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=x86@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.