Commit 9ec0e2f6 authored by Avi Kivity's avatar Avi Kivity Committed by Greg Kroah-Hartman

KVM: VMX: Force vm86 mode if setting flags during real mode

patch 78f78268 in mainline.

When resetting from userspace, we need to handle the flags being cleared
even after we are in real mode.
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e8670498
......@@ -463,6 +463,8 @@ static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
{
if (vcpu->rmode.active)
rflags |= IOPL_MASK | X86_EFLAGS_VM;
vmcs_writel(GUEST_RFLAGS, rflags);
}
......
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