summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2007-05-17 12:50:34 (GMT)
committerAvi Kivity <avi@qumranet.com>2007-07-16 09:05:41 (GMT)
commitb3f37707b05e9ce82d5bec660e9d0b15452ee9a0 (patch)
treea4d210f6449be292cfd9171c3e3e972ff2773234
parentcd2276a795b013d1416c96b38eec90a66cdd10c4 (diff)
downloadlinux-b3f37707b05e9ce82d5bec660e9d0b15452ee9a0.tar.xz
KVM: VMX: Handle #SS faults from real mode
Instructions with address size override prefix opcode 0x67 Cause the #SS fault with 0 error code in VM86 mode. Forward them to the emulator. Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
-rw-r--r--drivers/kvm/vmx.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index c4c5535..a05bfa0 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -1488,7 +1488,11 @@ static int handle_rmode_exception(struct kvm_vcpu *vcpu,
if (!vcpu->rmode.active)
return 0;
- if (vec == GP_VECTOR && err_code == 0)
+ /*
+ * Instruction with address size override prefix opcode 0x67
+ * Cause the #SS fault with 0 error code in VM86 mode.
+ */
+ if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
if (emulate_instruction(vcpu, NULL, 0, 0) == EMULATE_DONE)
return 1;
return 0;