All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] vfio-pci: add a switch to disable PCI AER
@ 2014-12-15 15:05 Peter Lieven
  2014-12-15 15:19 ` Alex Williamson
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Lieven @ 2014-12-15 15:05 UTC (permalink / raw)
  To: qemu-devel; +Cc: alex.williamson, Peter Lieven

AER is meant to let a device driver recover from
errors discovered on the PCIe bus. However, the
current implementation of vfio-pci does not distingish
between correctable or uncorrectalbe as well as fatal
vs. non-fatal errors. Any kind of error can trigger the
error correction interrupt and cause all vServers to
switch to RUN_STATE_INTERNAL_ERROR.

I have observed correctable non-fatal errors on a
PCI root hub which where then propagated to all vServers
on this root hub causing them to shut down.

I added this switch to be able to ignore AER interrupts
until a proper interface to propagate the error type from
kernel to qemu is there. That would be the old behaviour
of pci-assign or a host kernel not supporting AER.

Signed-off-by: Peter Lieven <pl@kamp.de>
---
 hw/misc/vfio.c |   13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c
index fd318a1..b479708 100644
--- a/hw/misc/vfio.c
+++ b/hw/misc/vfio.c
@@ -217,6 +217,8 @@ typedef struct VFIODevice {
     uint32_t features;
 #define VFIO_FEATURE_ENABLE_VGA_BIT 0
 #define VFIO_FEATURE_ENABLE_VGA (1 << VFIO_FEATURE_ENABLE_VGA_BIT)
+#define VFIO_FEATURE_ENABLE_PCI_AER_BIT 1
+#define VFIO_FEATURE_ENABLE_PCI_AER (1 << VFIO_FEATURE_ENABLE_PCI_AER_BIT)
     int32_t bootindex;
     uint8_t pm_cap;
     bool reset_works;
@@ -4025,7 +4027,13 @@ static int vfio_get_device(VFIOGroup *group, const char *name, VFIODevice *vdev)
         DPRINTF("VFIO_DEVICE_GET_IRQ_INFO failure: %m\n");
         ret = 0;
     } else if (irq_info.count == 1) {
-        vdev->pci_aer = true;
+        vdev->pci_aer = !!(vdev->features & VFIO_FEATURE_ENABLE_PCI_AER);
+        if (!vdev->pci_aer) {
+            error_report("vfio: %04x:%02x:%02x.%x "
+                         "Ignoring error recovery interrupts for the device",
+                         vdev->host.domain, vdev->host.bus, vdev->host.slot,
+                         vdev->host.function);
+        }
     } else {
         error_report("vfio: %04x:%02x:%02x.%x "
                      "Could not enable error recovery for the device",
@@ -4381,6 +4389,9 @@ static Property vfio_pci_dev_properties[] = {
                        intx.mmap_timeout, 1100),
     DEFINE_PROP_BIT("x-vga", VFIODevice, features,
                     VFIO_FEATURE_ENABLE_VGA_BIT, false),
+    DEFINE_PROP_BIT("pci-aer", VFIODevice, features,
+                    VFIO_FEATURE_ENABLE_PCI_AER, true),
+
     /*
      * TODO - support passed fds... is this necessary?
      * DEFINE_PROP_STRING("vfiofd", VFIODevice, vfiofd_name),
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-12-15 15:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-15 15:05 [Qemu-devel] [PATCH] vfio-pci: add a switch to disable PCI AER Peter Lieven
2014-12-15 15:19 ` Alex Williamson
2014-12-15 15:28   ` Peter Lieven
2014-12-15 15:59     ` Alex Williamson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.