summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/vmx.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2008-08-20 15:48:27 +0300
committerAvi Kivity <avi@qumranet.com>2008-10-15 10:15:21 +0200
commita16b20da879430fdf245ed45461ed40ffef8db3c (patch)
tree19868d9c7653c7c6034f3b9d8f09617ade073b19 /arch/x86/kvm/vmx.c
parent5706be0dafd6f42852f85fbae292301dcad4ccec (diff)
KVM: VMX: Change segment dpl at reset to 3
This is more emulation friendly, if not 100% correct. Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r--arch/x86/kvm/vmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 6aa305ace79f..71e57ae1cab7 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -1991,7 +1991,7 @@ static void seg_setup(int seg)
vmcs_write16(sf->selector, 0);
vmcs_writel(sf->base, 0);
vmcs_write32(sf->limit, 0xffff);
- vmcs_write32(sf->ar_bytes, 0x93);
+ vmcs_write32(sf->ar_bytes, 0xf3);
}
static int alloc_apic_access_page(struct kvm *kvm)