[PATCH v2] perf/x86/amd: Reject branch stack for IBS events

From: Ravi Bangoria
Date: Thu Nov 30 2023 - 01:23:36 EST


From: Namhyung Kim <namhyung@xxxxxxxxxx>

The AMD IBS PMU doesn't handle branch stacks, so it should not accept
events with brstack.

Signed-off-by: Namhyung Kim <namhyung@xxxxxxxxxx>
Signed-off-by: Ravi Bangoria <ravi.bangoria@xxxxxxx>
---
v1: https://lore.kernel.org/r/20230602194513.1589179-1-namhyung@xxxxxxxxxx
v1->v2:
- Rebase on top of peterz/queue/perf/core

arch/x86/events/amd/ibs.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/arch/x86/events/amd/ibs.c b/arch/x86/events/amd/ibs.c
index 6911c5399d02..e91970b01d62 100644
--- a/arch/x86/events/amd/ibs.c
+++ b/arch/x86/events/amd/ibs.c
@@ -287,6 +287,9 @@ static int perf_ibs_init(struct perf_event *event)
if (config & ~perf_ibs->config_mask)
return -EINVAL;

+ if (has_branch_stack(event))
+ return -EOPNOTSUPP;
+
ret = validate_group(event);
if (ret)
return ret;
--
2.34.1