]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: Sync the pending Posted-Interrupts
authorLuwei Kang <luwei.kang@intel.com>
Thu, 31 Jan 2019 08:52:02 +0000 (16:52 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 20 Feb 2019 21:48:27 +0000 (22:48 +0100)
commit15670f70246d7e8802f86a89d5ccf31a6e08806c
treeebc230c843f6b289475250319592789a3ef03edb
parent350775ca9fc234402d4c984ed954b665061bd622
KVM: x86: Sync the pending Posted-Interrupts

Some Posted-Interrupts from passthrough devices may be lost or
overwritten when the vCPU is in runnable state.

The SN (Suppress Notification) of PID (Posted Interrupt Descriptor) will
be set when the vCPU is preempted (vCPU in KVM_MP_STATE_RUNNABLE state
but not running on physical CPU). If a posted interrupt coming at this
time, the irq remmaping facility will set the bit of PIR (Posted
Interrupt Requests) without ON (Outstanding Notification).
So this interrupt can't be sync to APIC virtualization register and
will not be handled by Guest because ON is zero.

Signed-off-by: Luwei Kang <luwei.kang@intel.com>
[Eliminate the pi_clear_sn fast path. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/vmx/vmx.c
arch/x86/kvm/vmx/vmx.h
arch/x86/kvm/x86.c