diff options
author | Avi Kivity <avi@redhat.com> | 2012-08-21 10:07:10 -0400 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2012-08-27 19:02:21 -0400 |
commit | a81aba14dc0ea499f4c218b5db0303b2ea8151d3 (patch) | |
tree | ee2394f2db2507661eadcf0a6f4c7e1097395540 | |
parent | ce5668034752e52e995c8dc625337380099a088a (diff) |
KVM: VMX: Ignore segment G and D bits when considering whether we can virtualize
We will enter the guest with G and D cleared; as real hardware ignores D in
real mode, and G is taken care of by the limit test, we allow more code to
run in vm86 mode.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r-- | arch/x86/kvm/vmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 62b2d0cf2a7f..248c2b490e9b 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -3320,7 +3320,7 @@ static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) | |||
3320 | return false; | 3320 | return false; |
3321 | if (var.limit < 0xffff) | 3321 | if (var.limit < 0xffff) |
3322 | return false; | 3322 | return false; |
3323 | if ((ar | (3 << AR_DPL_SHIFT)) != 0xf3) | 3323 | if (((ar | (3 << AR_DPL_SHIFT)) & ~(AR_G_MASK | AR_DB_MASK)) != 0xf3) |
3324 | return false; | 3324 | return false; |
3325 | 3325 | ||
3326 | return true; | 3326 | return true; |