KVM: PPC: Book3S HV: Re-enable XICS fast path for irqfd-generated interrupts
authorPaul Mackerras <paulus@ozlabs.org>
Wed, 4 May 2016 11:07:52 +0000 (21:07 +1000)
committerPaul Mackerras <paulus@samba.org>
Thu, 12 May 2016 06:40:55 +0000 (16:40 +1000)
commitb1a4286b8f3393857a205ec89607683161b75f90
treeff8711632fd037aa3ab85e6ed208b98476fbe354
parent07f8ab255fcc0bce1fabc8fb35ace4f0f5d2ac67
KVM: PPC: Book3S HV: Re-enable XICS fast path for irqfd-generated interrupts

Commit c9a5eccac1ab ("kvm/eventfd: add arch-specific set_irq",
2015-10-16) added the possibility for architecture-specific code
to handle the generation of virtual interrupts in atomic context
where possible, without having to schedule a work function.

Since we can easily generate virtual interrupts on XICS without
having to do anything worse than take a spinlock, we define a
kvm_arch_set_irq_inatomic() for XICS.  We also remove kvm_set_msi()
since it is not used any more.

The one slightly tricky thing is that with the new interface, we
don't get told whether the interrupt is an MSI (or other edge
sensitive interrupt) vs. level-sensitive.  The difference as far
as interrupt generation is concerned is that for LSIs we have to
set the asserted flag so it will continue to fire until it is
explicitly cleared.

In fact the XICS code gets told which interrupts are LSIs by userspace
when it configures the interrupt via the KVM_DEV_XICS_GRP_SOURCES
attribute group on the XICS device.  To store this information, we add
a new "lsi" field to struct ics_irq_state.  With that we can also do a
better job of returning accurate values when reading the attribute
group.

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kvm/book3s_xics.c
arch/powerpc/kvm/book3s_xics.h