From: Like Xu Date: Wed, 3 Nov 2021 09:17:16 +0000 (+0800) Subject: perf/x86/vlbr: Add c->flags to vlbr event constraints X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5863702561e625903ec678551cb056a4b19e0b8a;p=linux.git 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: 097e4311cda9 ("perf/x86: Add constraint to create guest LBR event without hw counter") Reported-by: Wanpeng Li Signed-off-by: Like Xu Signed-off-by: Peter Zijlstra (Intel) Tested-by: Wanpeng Li Link: https://lore.kernel.org/r/20211103091716.59906-1-likexu@tencent.com --- diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c index 603964408d2d7..42cf01ecdd131 100644 --- a/arch/x86/events/intel/core.c +++ b/arch/x86/events/intel/core.c @@ -3048,8 +3048,10 @@ intel_vlbr_constraints(struct perf_event *event) { 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 NULL; }