qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/12] vfio queue
@ 2025-10-22 12:18 Cédric Le Goater
  2025-10-22 12:18 ` [PULL 01/12] vfio/container: Remap only populated parts in a section Cédric Le Goater
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Cédric Le Goater @ 2025-10-22 12:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Williamson, Cédric Le Goater

The following changes since commit 3c0b42c68f98fb276fa248012642be8cbf2cab70:

  Merge tag 'pull-request-2025-10-21' of https://gitlab.com/thuth/qemu into staging (2025-10-21 08:59:35 -0500)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-vfio-20251022

for you to fetch changes up to ecbe424a63c9f860a901d6a4a75724b046abd796:

  vfio: only check region info cache for initial regions (2025-10-22 08:12:52 +0200)

----------------------------------------------------------------
vfio queue:

* Fix CPR transfer
* Add support for VFIO_DMA_UNMAP_FLAG_ALL
* Fix vfio-user documentation
* Update Alex Williamson's email address
* Fix for vfio-region cache for the vGPU use case

----------------------------------------------------------------
Alex Williamson (1):
      MAINTAINERS: Update Alex Williamson's email address

John Levon (3):
      docs/system/devices/vfio-user: fix formatting
      vfio: rename field to "num_initial_regions"
      vfio: only check region info cache for initial regions

Zhenzhong Duan (8):
      vfio/container: Remap only populated parts in a section
      vfio/cpr-legacy: drop an erroneous assert
      vfio/iommufd: Set cpr.ioas_id on source side for CPR transfer
      vfio/iommufd: Restore vbasedev's reference to hwpt after CPR transfer
      accel/kvm: Fix an erroneous check on coalesced_mmio_ring
      vfio/container: Support unmap all in one ioctl()
      vfio/iommufd: Support unmap all in one ioctl()
      vfio/listener: Add an assertion for unmap_all

 MAINTAINERS                             |  4 ++--
 docs/system/devices/vfio-user.rst       |  2 +-
 include/hw/vfio/vfio-container-legacy.h |  1 +
 include/hw/vfio/vfio-cpr.h              |  2 +-
 include/hw/vfio/vfio-device.h           |  2 +-
 accel/kvm/kvm-all.c                     |  3 ++-
 hw/vfio-user/device.c                   |  2 +-
 hw/vfio/ccw.c                           |  4 ++--
 hw/vfio/container-legacy.c              | 38 ++++++++++++++++++--------------
 hw/vfio/cpr-legacy.c                    | 22 +++++++++++++------
 hw/vfio/device.c                        | 39 +++++++++++++++++++++------------
 hw/vfio/iommufd.c                       | 26 ++++++----------------
 hw/vfio/listener.c                      |  5 +++--
 hw/vfio/pci.c                           |  4 ++--
 .mailmap                                |  1 +
 15 files changed, 86 insertions(+), 69 deletions(-)



^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PULL 00/12] vfio queue
@ 2025-02-11 14:33 Cédric Le Goater
  2025-02-12 17:38 ` Stefan Hajnoczi
  0 siblings, 1 reply; 19+ messages in thread
From: Cédric Le Goater @ 2025-02-11 14:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Williamson, Cédric Le Goater

The following changes since commit ffaf7f0376f8040ce9068d71ae9ae8722505c42e:

  Merge tag 'pull-10.0-testing-and-gdstub-updates-100225-1' of https://gitlab.com/stsquad/qemu into staging (2025-02-10 13:26:17 -0500)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-vfio-20250211

for you to fetch changes up to be7d8579eb5758c0edf81eb068017a56471a77e0:

  vfio: Remove superfluous error report in vfio_listener_region_add() (2025-02-11 14:15:19 +0100)

----------------------------------------------------------------
vfio queue:

* Coverity fix
* IGD cleanups using VFIOQuirk
* SIGSEV fix in IOMMUFD host IOMMU device
* Improved error reporting for MMIO region mapping failures

----------------------------------------------------------------
Cédric Le Goater (8):
      vfio/igd: Fix potential overflow in igd_gtt_memory_size()
      util/error: Introduce warn_report_err_once()
      vfio/pci: Replace "iommu_device" by "vIOMMU"
      vfio: Rephrase comment in vfio_listener_region_add() error path
      vfio: Introduce vfio_get_vfio_device()
      vfio: Improve error reporting when MMIO region mapping fails
      vfio: Remove reports of DMA mapping errors in backends
      vfio: Remove superfluous error report in vfio_listener_region_add()

Tomita Moeko (3):
      vfio/pci: declare generic quirks in a new header file
      vfio/pci: introduce config_offset field in VFIOConfigMirrorQuirk
      vfio/igd: use VFIOConfigMirrorQuirk for mirrored registers

Zhenzhong Duan (1):
      vfio/iommufd: Fix SIGSEV in iommufd_cdev_attach()

 hw/vfio/pci-quirks.h          |  72 ++++++++++++++++++++++++
 include/hw/vfio/vfio-common.h |   1 +
 include/qapi/error.h          |  12 ++++
 backends/iommufd.c            |   3 -
 hw/vfio/common.c              |  40 +++++++++----
 hw/vfio/container.c           |   2 -
 hw/vfio/helpers.c             |  10 ++++
 hw/vfio/igd.c                 | 127 +++++++++++-------------------------------
 hw/vfio/iommufd.c             |   5 +-
 hw/vfio/pci-quirks.c          |  57 ++-----------------
 hw/vfio/pci.c                 |   2 +-
 util/error.c                  |  11 ++++
 12 files changed, 177 insertions(+), 165 deletions(-)
 create mode 100644 hw/vfio/pci-quirks.h



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

end of thread, other threads:[~2025-10-23 12:17 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22 12:18 [PULL 00/12] vfio queue Cédric Le Goater
2025-10-22 12:18 ` [PULL 01/12] vfio/container: Remap only populated parts in a section Cédric Le Goater
2025-10-22 12:18 ` [PULL 02/12] vfio/cpr-legacy: drop an erroneous assert Cédric Le Goater
2025-10-22 12:18 ` [PULL 03/12] vfio/iommufd: Set cpr.ioas_id on source side for CPR transfer Cédric Le Goater
2025-10-22 12:18 ` [PULL 04/12] vfio/iommufd: Restore vbasedev's reference to hwpt after " Cédric Le Goater
2025-10-22 12:18 ` [PULL 05/12] accel/kvm: Fix an erroneous check on coalesced_mmio_ring Cédric Le Goater
2025-10-22 12:18 ` [PULL 06/12] vfio/container: Support unmap all in one ioctl() Cédric Le Goater
2025-10-22 12:18 ` [PULL 07/12] vfio/iommufd: " Cédric Le Goater
2025-10-22 12:18 ` [PULL 08/12] vfio/listener: Add an assertion for unmap_all Cédric Le Goater
2025-10-22 12:18 ` [PULL 09/12] docs/system/devices/vfio-user: fix formatting Cédric Le Goater
2025-10-22 12:18 ` [PULL 10/12] MAINTAINERS: Update Alex Williamson's email address Cédric Le Goater
2025-10-22 12:18 ` [PULL 11/12] vfio: rename field to "num_initial_regions" Cédric Le Goater
2025-10-22 12:18 ` [PULL 12/12] vfio: only check region info cache for initial regions Cédric Le Goater
2025-10-22 12:55 ` [PULL 00/12] vfio queue Cédric Le Goater
2025-10-23  9:53   ` Michael Tokarev
2025-10-23 12:16     ` Cédric Le Goater
2025-10-22 14:31 ` Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2025-02-11 14:33 Cédric Le Goater
2025-02-12 17:38 ` Stefan Hajnoczi

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).