diff options
author | Avi Kivity <avi@redhat.com> | 2009-06-03 07:12:10 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-09-10 01:32:46 -0400 |
commit | 596ae895653fe336b9b5815ad2c175d22bb26f21 (patch) | |
tree | bcd6c6fcb6eb7ef4bc24036dc0349c3654b2bed8 | |
parent | 6de4f3ada40b336522250a7832a0cc4de8856589 (diff) |
KVM: VMX: Fix reporting of unhandled EPT violations
Instead of returning -ENOTSUPP, exit normally but indicate the hardware
exit reason.
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/kvm/vmx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index d726dec69529..959cb59cfaeb 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -3153,8 +3153,8 @@ static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) | |||
3153 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", | 3153 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
3154 | (long unsigned int)exit_qualification); | 3154 | (long unsigned int)exit_qualification); |
3155 | kvm_run->exit_reason = KVM_EXIT_UNKNOWN; | 3155 | kvm_run->exit_reason = KVM_EXIT_UNKNOWN; |
3156 | kvm_run->hw.hardware_exit_reason = 0; | 3156 | kvm_run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
3157 | return -ENOTSUPP; | 3157 | return 0; |
3158 | } | 3158 | } |
3159 | 3159 | ||
3160 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); | 3160 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |