mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
perf/x86/vlbr: Add c->flags to vlbr event constraints
[ Upstream commit5863702561] Just like what we do in the x86_get_event_constraints(), the PERF_X86_EVENT_LBR_SELECT flag should also be propagated to event->hw.flags so that the host lbr driver can save/restore MSR_LBR_SELECT for the special vlbr event created by KVM or BPF. Fixes:097e4311cd("perf/x86: Add constraint to create guest LBR event without hw counter") Reported-by: Wanpeng Li <wanpengli@tencent.com> Signed-off-by: Like Xu <likexu@tencent.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Tested-by: Wanpeng Li <wanpengli@tencent.com> Link: https://lore.kernel.org/r/20211103091716.59906-1-likexu@tencent.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
68fcb52b61
commit
dadcc935f4
@@ -2879,8 +2879,10 @@ intel_vlbr_constraints(struct perf_event *event)
|
|||||||
{
|
{
|
||||||
struct event_constraint *c = &vlbr_constraint;
|
struct event_constraint *c = &vlbr_constraint;
|
||||||
|
|
||||||
if (unlikely(constraint_match(c, event->hw.config)))
|
if (unlikely(constraint_match(c, event->hw.config))) {
|
||||||
|
event->hw.flags |= c->flags;
|
||||||
return c;
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user