KVM: x86/pmu: Zero out pmu->all_valid_pmc_idx each time it's refreshed
authorLike Xu <likexu@tencent.com>
Tue, 4 Apr 2023 07:17:59 +0000 (15:17 +0800)
committerSean Christopherson <seanjc@google.com>
Wed, 5 Apr 2023 23:33:10 +0000 (16:33 -0700)
commit7e768ce8278bafe43e2a4771a82b61856190a3fc
tree1e9e1aadaf35e5abd21be169900724e488035c42
parent12aad9164763bb4890277d3b2a4664f443a48e3f
KVM: x86/pmu: Zero out pmu->all_valid_pmc_idx each time it's refreshed

The kvm_pmu_refresh() may be called repeatedly (e.g. configure guest
CPUID repeatedly or update MSR_IA32_PERF_CAPABILITIES) and each
call will use the last pmu->all_valid_pmc_idx value, with the residual
bits introducing additional overhead later in the vPMU emulation.

Fixes: b35e5548b411 ("KVM: x86/vPMU: Add lazy mechanism to release perf_event per vPMC")
Suggested-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Like Xu <likexu@tencent.com>
Link: https://lore.kernel.org/r/20230404071759.75376-1-likexu@tencent.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
arch/x86/kvm/pmu.c