Turn on interrupt window exiting unconditionally when an ExtINT is being

injected into the guest. This allows the hypervisor to inject another
ExtINT or APIC vector as soon as the guest is able to process interrupts.

This change is not to address any correctness issue but to guarantee that
any pending APIC vector that was preempted by the ExtINT will be injected
as soon as possible. Prior to this change such pending interrupts could be
delayed until the next VM exit.
This commit is contained in:
Neel Natu 2014-06-10 01:38:02 +00:00
parent 4163c83ff6
commit 0494cb1bcb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267311

View File

@ -1311,9 +1311,13 @@ vmx_inject_interrupts(struct vmx *vmx, int vcpu, struct vlapic *vlapic)
* have posted another one. If that is the case, set
* the Interrupt Window Exiting execution control so
* we can inject that one too.
*
* Also, interrupt window exiting allows us to inject any
* pending APIC vector that was preempted by the ExtINT
* as soon as possible. This applies both for the software
* emulated vlapic and the hardware assisted virtual APIC.
*/
if (vm_extint_pending(vmx->vm, vcpu))
vmx_set_int_window_exiting(vmx, vcpu);
vmx_set_int_window_exiting(vmx, vcpu);
}
VCPU_CTR1(vmx->vm, vcpu, "Injecting hwintr at vector %d", vector);