From: Cornelia Huck <cohuck@redhat.com>
To: Pierre Morel <pmorel@linux.vnet.ibm.com>
Cc: Alex Williamson <alex.williamson@redhat.com>,
qemu-devel@nongnu.org, borntraeger@de.ibm.com,
pasic@linux.vnet.ibm.com, zyimin@linux.vnet.ibm.com,
agraf@suse.de
Subject: Re: [Qemu-devel] [PATCH v1 4/5] s390x/pci: Refuse to realize VFIO-PCI if AIS needed but supported
Date: Tue, 10 Oct 2017 11:35:20 +0200 [thread overview]
Message-ID: <20171010113520.6c3d03e3.cohuck@redhat.com> (raw)
In-Reply-To: <e59c8274-c390-b99f-85dd-ec3763520ff1@linux.vnet.ibm.com>
On Mon, 9 Oct 2017 19:16:23 +0200
Pierre Morel <pmorel@linux.vnet.ibm.com> wrote:
> On 09/10/2017 16:45, Alex Williamson wrote:
> > On Wed, 4 Oct 2017 15:49:38 +0200
> > Pierre Morel <pmorel@linux.vnet.ibm.com> wrote:
> >
> >> In S390x the Adapter Interrupt Suppression facility is used to mask
> >> interrupts of other PCI devices during interruption handling.
> >>
> >> VFIO PCI allows the interrupts to be delivered rapidely through KVM via
> >> IRQfd or to be delivered through QEMU.
> >> The choice is made through the x-kvm-intx and x-kvo-misx properties of
> >> the VFIO PCI device.
> >>
> >> If the VFIO PCI device is using the direct KVM access through IRQfd and
> >> we know that KVM does not implement AIS support we refuse to realize the
> >> VFIO PCI device.
> >>
> >> In all other cases, emulation and VFIO PCI sending interrupts through
> >> QEMU, we intercept the propagated IRQ, and protect it with the QEMU AIS
> >> implementation before to send it to the guest through KVM.
> >>
> >> Signed-off-by: Pierre Morel <pmorel@linux.vnet.ibm.com>
> >> ---
> >> hw/s390x/s390-pci-bus.c | 12 ++++++++++++
> >> 1 file changed, 12 insertions(+)
> >>
> >> diff --git a/hw/s390x/s390-pci-bus.c b/hw/s390x/s390-pci-bus.c
> >> index d9c294a..4afe49b 100644
> >> --- a/hw/s390x/s390-pci-bus.c
> >> +++ b/hw/s390x/s390-pci-bus.c
> >> @@ -21,18 +21,21 @@
> >> #include "hw/pci/pci_bus.h"
> >> #include "hw/pci/pci_bridge.h"
> >> #include "hw/pci/msi.h"
> >> +#include "hw/vfio/pci.h"
> >> #include "qemu/error-report.h"
> >>
> >> #ifndef DEBUG_S390PCI_BUS
> >> #define DEBUG_S390PCI_BUS 0
> >> #endif
> >>
> >> +#ifndef DPRINTF
> >> #define DPRINTF(fmt, ...) \
> >> do { \
> >> if (DEBUG_S390PCI_BUS) { \
> >> fprintf(stderr, "S390pci-bus: " fmt, ## __VA_ARGS__); \
> >> } \
> >> } while (0)
> >> +#endif
> >
> > Maybe a sign we shouldn't be including vfio/pci.h
> >
> >> S390pciState *s390_get_phb(void)
> >> {
> >> @@ -751,6 +754,15 @@ static void s390_pcihost_hot_plug(HotplugHandler *hotplug_dev,
> >> }
> >>
> >> if (object_dynamic_cast(OBJECT(dev), "vfio-pci")) {
> >> + S390FLICState *fs = s390_get_flic();
> >> + VFIOPCIDevice *vdev = DO_UPCAST(VFIOPCIDevice, pdev, pdev);
> >> +
> >> + if ((!vdev->no_kvm_msix || !vdev->no_kvm_msix) &&
> >> + (!fs || !fs->ais_supported)) {
> >> + error_setg(errp, "VFIO PCI is not supported "
> >> + "because kernel has no AIS capability.");
> >> + return;
> >> + }
> >
> >
> > Hmm, you're basically looking at private data structure fields for
> > experimental disable flags, which no user, or more importantly no
> > management tool, could rightfully be expected to provide. Can we not
> > take this into account to automatically do the right thing, ie.
> > automatically set the necessary flag during the device realize? Thanks,
>
> I am not sure to understand.
>
> Here we are in a s390x specific device and without vfio/pci.h, we have
> no access to the PCI VFIOdevice structure from the realize function.
>
> Do you mean to add an entry in the VFIOPCIdevice realize?
> A new quirk ?
> An architecture callback, because we also need access to S390FLICState ?
>
>
> We also have the possibility to not fall-back to AIS emulation for VFIO
> but we would loose the possibility to migrate to a host not supporting AIS.
Thinking about this some more: The problem is generally "if we have to
fall back to ais emulation, we cannot support any pci device that
bypasses qemu's interrupt injection", no?
So this would imply vfio devices where the experimental switch is not
used, but also virtio-pci if it is configured to use irqfd, I think.
The ugly thing is that the platform-specific code depends on a property
of the plugged device being set or not set... and that's likely to be
different from device type to device type, and may not even be
configurable for some device types.
next prev parent reply other threads:[~2017-10-10 9:35 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-04 13:49 [Qemu-devel] [PATCH v1 0/5][RFC] Refactoring of AIS support Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 1/5] s390x/kvm: Enable AIS from CPU model always Pierre Morel
2017-10-09 9:09 ` Cornelia Huck
2017-10-09 13:58 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 2/5] s390x/css: Use AIS AIRQ injection only if adapter support AIS Pierre Morel
2017-10-09 8:17 ` Cornelia Huck
2017-10-09 13:55 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 3/5] s390x/intc: Emulate Adapter Interrupt Suppression Pierre Morel
2017-10-09 8:42 ` Cornelia Huck
2017-10-09 9:08 ` Cornelia Huck
2017-10-09 14:05 ` Pierre Morel
2017-10-09 14:03 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 4/5] s390x/pci: Refuse to realize VFIO-PCI if AIS needed but supported Pierre Morel
2017-10-09 9:06 ` Cornelia Huck
2017-10-09 14:25 ` Pierre Morel
2017-10-09 14:45 ` Alex Williamson
2017-10-09 17:16 ` Pierre Morel
2017-10-10 9:35 ` Cornelia Huck [this message]
2017-10-10 16:01 ` Pierre Morel
2017-10-11 12:20 ` Cornelia Huck
2017-10-12 10:12 ` Pierre Morel
2017-10-12 14:48 ` Pierre Morel
2017-10-12 14:54 ` Cornelia Huck
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 5/5] s390x/intc: AIS is now always migratable Pierre Morel
2017-10-30 8:28 ` [Qemu-devel] [PATCH v1 0/5][RFC] Refactoring of AIS support Christian Borntraeger
2017-10-30 12:42 ` Cornelia Huck
2017-10-30 12:44 ` Christian Borntraeger
2017-10-30 13:44 ` Pierre Morel
2017-10-30 13:48 ` Christian Borntraeger
2017-10-30 14:02 ` Halil Pasic
2017-10-30 16:59 ` Cornelia Huck
2017-10-30 17:08 ` Christian Borntraeger
2017-10-30 17:38 ` Pierre Morel
2017-10-30 18:58 ` Halil Pasic
2017-11-06 8:52 ` Cornelia Huck
2017-11-06 8:54 ` Christian Borntraeger
2017-11-06 10:05 ` Pierre Morel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171010113520.6c3d03e3.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=agraf@suse.de \
--cc=alex.williamson@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=pasic@linux.vnet.ibm.com \
--cc=pmorel@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=zyimin@linux.vnet.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).