summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/cpuid.c
diff options
context:
space:
mode:
authorJim Mattson <jmattson@google.com>2016-12-20 16:34:50 -0800
committerRadim Krčmář <rkrcmar@redhat.com>2017-01-20 22:18:55 +0100
commit0b4c208d443ba2af82b4c70f99ca8df31e9a0020 (patch)
treeefb6284f35c686b043c93ef0d251b979f9b367a5 /arch/x86/kvm/cpuid.c
parenta17f32270af1e1054bbc8858b0f27226a2c859ba (diff)
downloadlinux-0-day-0b4c208d443ba2af82b4c70f99ca8df31e9a0020.tar.gz
linux-0-day-0b4c208d443ba2af82b4c70f99ca8df31e9a0020.tar.xz
Revert "KVM: nested VMX: disable perf cpuid reporting"
This reverts commit bc6134942dbbf31c25e9bd7c876be5da81c9e1ce. A CPUID instruction executed in VMX non-root mode always causes a VM-exit, regardless of the leaf being queried. Fixes: bc6134942dbb ("KVM: nested VMX: disable perf cpuid reporting") Signed-off-by: Jim Mattson <jmattson@google.com> [The issue solved by bc6134942dbb has been resolved with ff651cb613b4 ("KVM: nVMX: Add nested msr load/restore algorithm").] Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
Diffstat (limited to 'arch/x86/kvm/cpuid.c')
-rw-r--r--arch/x86/kvm/cpuid.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c
index 09c2ac741567b..c0e2036217ada 100644
--- a/arch/x86/kvm/cpuid.c
+++ b/arch/x86/kvm/cpuid.c
@@ -861,12 +861,6 @@ void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
if (!best)
best = check_cpuid_limit(vcpu, function, index);
- /*
- * Perfmon not yet supported for L2 guest.
- */
- if (is_guest_mode(vcpu) && function == 0xa)
- best = NULL;
-
if (best) {
*eax = best->eax;
*ebx = best->ebx;