Hi, This patch series introduces support for error recovery for passthrough PCI devices on System Z (s390x). This is the user space component for the Linux kernel patches [1]. The kernel patches were merged for 7.3 and it had some significant changes in VFIO API since the last QEMU series was posted. But the design for QEMU component is still the same.
For QEMU on eventfd notification for PCI error from vfio-pci driver we call the vfio error handler. We can use a per device error handler callback to override the default vfio error handler. For s390x specific error handler, we retrieve the architecture specific PCI error information and inject the information into the guest. Once the guest receives the error information, the guest drivers will drive the error recovery. Typically recovery involves a device reset which translate to CLP disable/enable cycle for the device. I would appreciate some feedback on this patch series. Thanks Farhan [1] https://lore.kernel.org/all/[email protected]/ ChangeLog --------- v3 https://lore.kernel.org/qemu-devel/[email protected]/ v3 -> v4 - Include linux headers for 7.3-rc1. - Rework VFIO API changes based on the kernel API (patch 3). - Address Markus's comments from v3 (patch 2). v2 https://lore.kernel.org/qemu-devel/[email protected]/ v2 -> v3 - Update arch_err_handler to err_handler and include Error ** in function definition. (patch 2) - Introduce helper function to hide the internal indirection of device_feature() (patch 3) - Update function definitions to include Error ** (patch 4) v1 https://lore.kernel.org/qemu-devel/[email protected]/ v1 -> v2 - Use VFIO_DEVICE_FEATURE ioctl to get device error information. (Based on Alex's feedback on kernel series) Farhan Ali (4): linux-headers: Update Linux header to 7.3-rc1 vfio/pci: Add an error handler callback s390x/pci: Add PCI error handling for vfio pci devices s390x/pci: Reset a device in error state hw/s390x/s390-pci-bus.c | 16 ++ hw/s390x/s390-pci-vfio-stubs.c | 10 + hw/s390x/s390-pci-vfio.c | 110 +++++++++++ hw/vfio/pci.c | 27 ++- hw/vfio/pci.h | 1 + include/hw/s390x/s390-pci-bus.h | 2 + include/hw/s390x/s390-pci-vfio.h | 2 + include/standard-headers/drm/drm_fourcc.h | 209 ++++++++++++++++++-- include/standard-headers/linux/ethtool.h | 6 + include/standard-headers/linux/fuse.h | 63 +++++- include/standard-headers/linux/virtio_ids.h | 1 + linux-headers/asm-arm64/kvm.h | 1 + linux-headers/asm-riscv/kvm.h | 13 ++ linux-headers/linux/iommufd.h | 45 ++++- linux-headers/linux/kvm.h | 1 + linux-headers/linux/userfaultfd.h | 54 ++++- linux-headers/linux/vduse.h | 28 +++ linux-headers/linux/vfio.h | 21 ++ linux-headers/linux/vfio_zdev.h | 2 + 19 files changed, 579 insertions(+), 33 deletions(-) -- 2.43.0
