]> git.proxmox.com Git - mirror_qemu.git/commit - target-i386/kvm.c
apic: Defer interrupt updates to VCPU thread
authorJan Kiszka <jan.kiszka@siemens.com>
Mon, 9 Jul 2012 14:42:32 +0000 (16:42 +0200)
committerAvi Kivity <avi@redhat.com>
Tue, 10 Jul 2012 08:31:09 +0000 (11:31 +0300)
commit5d62c43a17edaa7f6a88821c9086e6c8e0e5327d
tree3a87b9355b9fce43838e803a38591bb0e4bb908e
parenta94820ddc36f8c452b37f9dcb323f55ffdbc75f9
apic: Defer interrupt updates to VCPU thread

KVM performs TPR raising asynchronously to QEMU, specifically outside
QEMU's global lock. When an interrupt is injected into the APIC and TPR
is checked to decide if this can be delivered, a stale TPR value may be
used, causing spurious interrupts in the end.

Fix this by deferring apic_update_irq to the context of the target VCPU.
We introduce a new interrupt flag for this, CPU_INTERRUPT_POLL. When it
is set, the VCPU calls apic_poll_irq before checking for further pending
interrupts. To avoid special-casing KVM, we also implement this logic
for TCG mode.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
cpu-exec.c
hw/apic.c
hw/apic.h
hw/apic_internal.h
target-i386/cpu.h
target-i386/kvm.c