mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 00:00:00 +00:00
KVM: VMX: Handle NMIs before enabling interrupts and preemption
This makes sure we handle NMI on the current cpu, and that we don't service maskable interrupts before non-maskable ones. Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
parent
7f2145ad6f
commit
1b6269db3f
@ -1760,10 +1760,8 @@ static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
|||||||
set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
|
set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) { /* nmi */
|
if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
|
||||||
asm ("int $2");
|
return 1; /* already handled by vmx_vcpu_run() */
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_no_device(intr_info)) {
|
if (is_no_device(intr_info)) {
|
||||||
vmx_fpu_activate(vcpu);
|
vmx_fpu_activate(vcpu);
|
||||||
@ -2196,6 +2194,7 @@ static void vmx_intr_assist(struct kvm_vcpu *vcpu)
|
|||||||
static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
||||||
{
|
{
|
||||||
struct vcpu_vmx *vmx = to_vmx(vcpu);
|
struct vcpu_vmx *vmx = to_vmx(vcpu);
|
||||||
|
u32 intr_info;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Loading guest fpu may have cleared host cr0.ts
|
* Loading guest fpu may have cleared host cr0.ts
|
||||||
@ -2322,6 +2321,12 @@ static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
|
|||||||
|
|
||||||
asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
|
asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
|
||||||
vmx->launched = 1;
|
vmx->launched = 1;
|
||||||
|
|
||||||
|
intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
|
||||||
|
|
||||||
|
/* We need to handle NMIs before interrupts are enabled */
|
||||||
|
if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
|
||||||
|
asm("int $2");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
|
static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user