Commit a16b20da authored by Avi Kivity's avatar Avi Kivity

KVM: VMX: Change segment dpl at reset to 3

This is more emulation friendly, if not 100% correct.
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 5706be0d
......@@ -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)
......
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