On 04/02/19 15:42, Suthikulpanit, Suravee wrote: > From: Julian Stecklina <jsteckli@xxxxxxxxx> > > ACK notifiers don't work with AMD AVIC when the PIT interrupt is > delivered as edge-triggered fixed interrupt via the IOAPIC. AMD > processors cannot exit on EOI for these interrupts. The ACK notifiers do > work when the interrupt is delivered via PIC as ExtINT, because the ACK > comes as PIO write that KVM sees. > > Change the PIT code to not rely on the ACK notifiers. The IRQ ACK > notifier in the PIT emulation re-schedules pit->expired to reinject any > pending PIT interrupt. This seems useless, because we can pulse the PIT > interrupt even when the interrupt is not ACKed yet. This means any timer > expiry when the interrupt was being handled by the guest, will cause an > interrupt to be injected automatically when the interrupt is ACKed. The difference is that with the irq ack notifier *all* the pending PIT interrupts will be delivered. Without, only one will. If you don't want the ack notifier, you can do that with the KVM_REINJECT_CONTROL ioctl. Unfortunately, reinject is enabled by default and that is part of the userspace ABI and we cannot change it. It's possible to enable AVIC when reinject is disabled, and we fix that at the QEMU level by changing the default reinject behavior, basically with this one-line change: diff --git a/hw/i386/kvm/i8254.c b/hw/i386/kvm/i8254.c index d4d4a85..1d82860 100644 --- a/hw/i386/kvm/i8254.c +++ b/hw/i386/kvm/i8254.c @@ -305,7 +305,7 @@ static void kvm_pit_realizefn(DeviceState *dev, Error **errp) static Property kvm_pit_properties[] = { DEFINE_PROP_UINT32("iobase", PITCommonState, iobase, -1), DEFINE_PROP_LOSTTICKPOLICY("lost_tick_policy", KVMPITState, - lost_tick_policy, LOST_TICK_POLICY_DELAY), + lost_tick_policy, LOST_TICK_POLICY_DISCARD), DEFINE_PROP_END_OF_LIST(), }; plus the corresponding change to compat properties in hw/i386/pc.c. Alternatively, it is probably a good time to switch the default to split irqchip in QEMU. Split irqchip was introduced in kernel 4.5, which was released about three years ago. Paolo > Reviewed-by: Filippo Sironi <sironi@xxxxxxxxx> > Signed-off-by: Julian Stecklina <jsteckli@xxxxxxxxx> > Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@xxxxxxx>