The following changes since commit 09be8a511a2e278b45729d7b065d30c68dd699d0:
Merge tag 'pull-qapi-2025-06-03' of https://repo.or.cz/qemu/armbru into staging (2025-06-03 09:19:26 -0400) are available in the Git repository at: https://github.com/legoater/qemu/ tags/pull-vfio-20250605 for you to fetch changes up to 3ed34463a2d8ab8aabfa1d612f12b56600c87983: vfio: move vfio-cpr.h (2025-06-05 10:40:38 +0200) ---------------------------------------------------------------- vfio queue: * Fixed OpRegion detection in IGD * Added prerequisite rework for IOMMU nesting support * Added prerequisite rework for vfio-user * Added prerequisite rework for VFIO live update * Modified memory_get_xlat_addr() to return a MemoryRegion ---------------------------------------------------------------- Edmund Raile (1): vfio/igd: OpRegion not found fix error typo John Levon (5): vfio: add more VFIOIOMMUClass docs vfio: move more cleanup into vfio_pci_put_device() vfio: move config space read into vfio_pci_config_setup() vfio: refactor out IRQ signalling setup vfio/container: pass MemoryRegion to DMA operations Steve Sistare (4): vfio: return mr from vfio_get_xlat_addr MAINTAINERS: Add reviewer for CPR vfio: vfio_find_ram_discard_listener vfio: move vfio-cpr.h Tomita Moeko (1): vfio/igd: Fix incorrect error propagation in vfio_pci_igd_opregion_detect() Zhenzhong Duan (5): vfio/iommufd: Add comment emphasizing no movement of hiod->realize() call backends/iommufd: Add a helper to invalidate user-managed HWPT vfio/iommufd: Add properties and handlers to TYPE_HOST_IOMMU_DEVICE_IOMMUFD vfio/iommufd: Implement [at|de]tach_hwpt handlers vfio/iommufd: Save vendor specific device info MAINTAINERS | 10 ++++ hw/vfio/vfio-cpr.h | 15 ------ include/hw/vfio/vfio-container-base.h | 83 ++++++++++++++++++++++++++++++-- include/hw/vfio/vfio-cpr.h | 18 +++++++ include/system/host_iommu_device.h | 15 ++++++ include/system/iommufd.h | 54 +++++++++++++++++++++ include/system/memory.h | 19 ++++---- backends/iommufd.c | 58 +++++++++++++++++++++++ hw/vfio/container-base.c | 4 +- hw/vfio/container.c | 5 +- hw/vfio/cpr.c | 2 +- hw/vfio/igd.c | 22 ++++----- hw/vfio/iommufd.c | 45 +++++++++++++++--- hw/vfio/listener.c | 74 ++++++++++++++++++----------- hw/vfio/pci.c | 89 +++++++++++++++++++---------------- hw/virtio/vhost-vdpa.c | 9 +++- system/memory.c | 32 +++---------- backends/trace-events | 1 + 18 files changed, 406 insertions(+), 149 deletions(-) delete mode 100644 hw/vfio/vfio-cpr.h create mode 100644 include/hw/vfio/vfio-cpr.h