From: Gleb Natapov Date: Thu, 16 Feb 2012 12:44:11 +0000 (+0200) Subject: KVM: x86 emulator: correctly mask pmc index bits in RDPMC instruction emulation X-Git-Tag: v3.4-rc1~59^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=270c6c79f4e15e599f47174ecedad932463af7a2;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git KVM: x86 emulator: correctly mask pmc index bits in RDPMC instruction emulation Signed-off-by: Gleb Natapov Signed-off-by: Avi Kivity --- diff --git a/arch/x86/kvm/pmu.c b/arch/x86/kvm/pmu.c index 7aad544..3e48c1d 100644 --- a/arch/x86/kvm/pmu.c +++ b/arch/x86/kvm/pmu.c @@ -413,7 +413,7 @@ int kvm_pmu_read_pmc(struct kvm_vcpu *vcpu, unsigned pmc, u64 *data) struct kvm_pmc *counters; u64 ctr; - pmc &= (3u << 30) - 1; + pmc &= ~(3u << 30); if (!fixed && pmc >= pmu->nr_arch_gp_counters) return 1; if (fixed && pmc >= pmu->nr_arch_fixed_counters)