Commit 28e2b2f1 authored by Tom Lendacky's avatar Tom Lendacky Committed by Paolo Bonzini

KVM: VMX: Do not perform emulation for INVD intercept

The INVD instruction is emulated as a NOP, just skip the instruction
instead.
Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Message-Id: <addd41be2fbf50f5f4059e990a2a0cff182d2136.1600972918.git.thomas.lendacky@amd.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 14e3dd8d
...@@ -5127,7 +5127,8 @@ static int handle_vmcall(struct kvm_vcpu *vcpu) ...@@ -5127,7 +5127,8 @@ static int handle_vmcall(struct kvm_vcpu *vcpu)
static int handle_invd(struct kvm_vcpu *vcpu) static int handle_invd(struct kvm_vcpu *vcpu)
{ {
return kvm_emulate_instruction(vcpu, 0); /* Treat an INVD instruction as a NOP and just skip it. */
return kvm_skip_emulated_instruction(vcpu);
} }
static int handle_invlpg(struct kvm_vcpu *vcpu) static int handle_invlpg(struct kvm_vcpu *vcpu)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment