On 7/10/23 09:48, Cédric Le Goater wrote:
The following changes since commit 2ff49e96accc8fd9a38e9abd16f0cfa0adab1605:
Merge tag 'pull-tcg-20230709' of https://gitlab.com/rth7680/qemu into
staging (2023-07-09 15:01:43 +0100)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-vfio-20230710
for you to fetch changes up to 9495bf68dd2fe305f5e95a53ae146ca523dc2a02:
vfio/pci: Enable AtomicOps completers on root ports (2023-07-10 09:46:09
+0200)
----------------------------------------------------------------
vfio queue:
* Fixes in error handling paths of VFIO PCI devices
* Improvements of reported errors for VFIO migration
* Linux header update
* Enablement of AtomicOps completers on root ports
* Fix for unplug of passthrough AP devices
----------------------------------------------------------------
Alex Williamson (3):
hw/vfio/pci-quirks: Sanitize capability pointer
pcie: Add a PCIe capability version helper
vfio/pci: Enable AtomicOps completers on root ports
Avihai Horon (1):
vfio: Fix null pointer dereference bug in vfio_bars_finalize()
Cédric Le Goater (1):
linux-headers: update to v6.5-rc1
I pushed this patch with an broken S-o-b tag. I will repush the tree.
Sorry about that,
C.
Tony Krowiak (1):
s390x/ap: Wire up the device request notifier interface
Zhenzhong Duan (5):
vfio/pci: Disable INTx in vfio_realize error path
vfio/migration: Change vIOMMU blocker from global to per device
vfio/migration: Free resources when vfio_migration_realize fails
vfio/migration: Remove print of "Migration disabled"
vfio/migration: Return bool type for vfio_migration_realize()
hw/vfio/pci.h | 1 +
include/hw/pci/pcie.h | 1 +
include/hw/vfio/vfio-common.h | 5 +-
include/standard-headers/drm/drm_fourcc.h | 43 ++++++++
include/standard-headers/linux/const.h | 2 +-
include/standard-headers/linux/pci_regs.h | 1 +
include/standard-headers/linux/vhost_types.h | 16 +++
include/standard-headers/linux/virtio_blk.h | 18 ++--
include/standard-headers/linux/virtio_config.h | 6 ++
include/standard-headers/linux/virtio_net.h | 1 +
linux-headers/asm-arm64/bitsperlong.h | 23 -----
linux-headers/asm-arm64/kvm.h | 33 ++++++
linux-headers/asm-generic/bitsperlong.h | 13 ++-
linux-headers/asm-generic/unistd.h | 134 +++++++------------------
linux-headers/asm-mips/unistd_n32.h | 1 +
linux-headers/asm-mips/unistd_n64.h | 1 +
linux-headers/asm-mips/unistd_o32.h | 1 +
linux-headers/asm-powerpc/unistd_32.h | 1 +
linux-headers/asm-powerpc/unistd_64.h | 1 +
linux-headers/asm-riscv/bitsperlong.h | 13 ---
linux-headers/asm-riscv/kvm.h | 134 ++++++++++++++++++++++++-
linux-headers/asm-riscv/unistd.h | 9 ++
linux-headers/asm-s390/unistd_32.h | 2 +
linux-headers/asm-s390/unistd_64.h | 2 +
linux-headers/asm-x86/kvm.h | 3 +
linux-headers/asm-x86/unistd_32.h | 1 +
linux-headers/asm-x86/unistd_64.h | 1 +
linux-headers/asm-x86/unistd_x32.h | 1 +
linux-headers/linux/const.h | 2 +-
linux-headers/linux/kvm.h | 18 +++-
linux-headers/linux/mman.h | 14 +++
linux-headers/linux/psp-sev.h | 7 ++
linux-headers/linux/userfaultfd.h | 17 +++-
linux-headers/linux/vfio.h | 27 +++++
linux-headers/linux/vhost.h | 31 ++++++
hw/pci/pcie.c | 7 ++
hw/vfio/ap.c | 113 +++++++++++++++++++++
hw/vfio/common.c | 51 +---------
hw/vfio/migration.c | 51 +++++++---
hw/vfio/pci-quirks.c | 10 +-
hw/vfio/pci.c | 91 ++++++++++++++++-
41 files changed, 678 insertions(+), 229 deletions(-)