From: Sandipan Das <sandipan.das@xxxxxxx> On AMD platforms, there is no way to restore PerfCntrGlobalCtl at VM-Entry or clear it at VM-Exit. Since the register states will be restored before entering and saved after exiting guest context, the counters can keep ticking and even overflow leading to chaos while still in host context. To avoid this, the PERF_CTLx MSRs (event selectors) are always intercepted. KVM will always set the GuestOnly bit and clear the HostOnly bit so that the counters run only in guest context even if their enable bits are set. Intercepting these MSRs is also necessary for guest event filtering. Signed-off-by: Sandipan Das <sandipan.das@xxxxxxx> --- arch/x86/kvm/svm/pmu.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/arch/x86/kvm/svm/pmu.c b/arch/x86/kvm/svm/pmu.c index 2ad62b8ac2c2..bed0acfaf34d 100644 --- a/arch/x86/kvm/svm/pmu.c +++ b/arch/x86/kvm/svm/pmu.c @@ -165,7 +165,12 @@ static int amd_pmu_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info) data &= ~pmu->reserved_bits; if (data != pmc->eventsel) { pmc->eventsel = data; - kvm_pmu_request_counter_reprogram(pmc); + if (is_passthrough_pmu_enabled(vcpu)) { + data &= ~AMD64_EVENTSEL_HOSTONLY; + pmc->eventsel_hw = data | AMD64_EVENTSEL_GUESTONLY; + } else { + kvm_pmu_request_counter_reprogram(pmc); + } } return 0; } -- 2.45.0.rc1.225.g2a3ae87e7f-goog