mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
perf/core: Don't allow grouping events from different hw pmus
Event group from different hw pmus does not make sense and thus perf
has never allowed it. However, with recent rewrite that restriction
has been inadvertently removed. Fix it.
Fixes: bd27568117
("perf: Rewrite core context handling")
Signed-off-by: Ravi Bangoria <ravi.bangoria@amd.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20221122080326.228-1-ravi.bangoria@amd.com
This commit is contained in:
parent
30093056f7
commit
bf480f9385
@ -12503,15 +12503,21 @@ SYSCALL_DEFINE5(perf_event_open,
|
||||
* perf_event_pmu_context.
|
||||
*/
|
||||
pmu = group_leader->pmu_ctx->pmu;
|
||||
} else if (!is_software_event(event) &&
|
||||
is_software_event(group_leader) &&
|
||||
(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
|
||||
/*
|
||||
* In case the group is a pure software group, and we
|
||||
* try to add a hardware event, move the whole group to
|
||||
* the hardware context.
|
||||
*/
|
||||
move_group = 1;
|
||||
} else if (!is_software_event(event)) {
|
||||
if (is_software_event(group_leader) &&
|
||||
(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
|
||||
/*
|
||||
* In case the group is a pure software group, and we
|
||||
* try to add a hardware event, move the whole group to
|
||||
* the hardware context.
|
||||
*/
|
||||
move_group = 1;
|
||||
}
|
||||
|
||||
/* Don't allow group of multiple hw events from different pmus */
|
||||
if (!in_software_context(group_leader) &&
|
||||
group_leader->pmu_ctx->pmu != pmu)
|
||||
goto err_locked;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user