Skip to content

Commit 5863702

Browse files
Like XuPeter Zijlstra
authored andcommitted
perf/x86/vlbr: Add c->flags to vlbr event constraints
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: 097e431 ("perf/x86: Add constraint to create guest LBR event without hw counter") Reported-by: Wanpeng Li <[email protected]> Signed-off-by: Like Xu <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Tested-by: Wanpeng Li <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 0fe39a3 commit 5863702

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

arch/x86/events/intel/core.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3048,8 +3048,10 @@ intel_vlbr_constraints(struct perf_event *event)
30483048
{
30493049
struct event_constraint *c = &vlbr_constraint;
30503050

3051-
if (unlikely(constraint_match(c, event->hw.config)))
3051+
if (unlikely(constraint_match(c, event->hw.config))) {
3052+
event->hw.flags |= c->flags;
30523053
return c;
3054+
}
30533055

30543056
return NULL;
30553057
}

0 commit comments

Comments
 (0)