qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/5] vfio queue
@ 2025-10-03 10:33 Cédric Le Goater
  2025-10-03 10:33 ` [PULL 1/5] vfio: Remove workaround for kernel DMA unmap overflow bug Cédric Le Goater
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Cédric Le Goater @ 2025-10-03 10:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Williamson, Cédric Le Goater

The following changes since commit 29b77c1a2db2d796bc3847852a5c8dc2a1e6e83b:

  Merge tag 'rust-ci-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2025-09-30 09:29:38 -0700)

are available in the Git repository at:

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

for you to fetch changes up to f0b52aa08ab0868c18d881381a8fda4b59b37517:

  hw/vfio: Use uint64_t for IOVA mapping size in vfio_container_dma_*map (2025-10-02 10:41:23 +0200)

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

* Remove workaround for kernel DMA unmap overflow
* Remove invalid uses of ram_addr_t type

----------------------------------------------------------------
Cédric Le Goater (1):
      vfio: Remove workaround for kernel DMA unmap overflow bug

Philippe Mathieu-Daudé (4):
      system/iommufd: Use uint64_t type for IOVA mapping size
      hw/vfio: Reorder vfio_container_query_dirty_bitmap() trace format
      hw/vfio: Avoid ram_addr_t in vfio_container_query_dirty_bitmap()
      hw/vfio: Use uint64_t for IOVA mapping size in vfio_container_dma_*map

 include/hw/vfio/vfio-container.h | 13 +++++++------
 include/hw/vfio/vfio-cpr.h       |  2 +-
 include/system/iommufd.h         |  6 +++---
 backends/iommufd.c               |  6 +++---
 hw/vfio-user/container.c         |  4 ++--
 hw/vfio/container-legacy.c       | 28 +++++-----------------------
 hw/vfio/container.c              | 15 ++++++++-------
 hw/vfio/cpr-legacy.c             |  2 +-
 hw/vfio/iommufd.c                |  6 +++---
 hw/vfio/listener.c               | 18 +++++++++---------
 hw/vfio/trace-events             |  7 +++----
 11 files changed, 45 insertions(+), 62 deletions(-)



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PULL 0/5] vfio queue
@ 2025-07-29  6:26 Cédric Le Goater
  2025-07-29 16:59 ` Stefan Hajnoczi
  0 siblings, 1 reply; 9+ messages in thread
From: Cédric Le Goater @ 2025-07-29  6:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Williamson, Cédric Le Goater

The following changes since commit 92c05be4dfb59a71033d4c57dac944b29f7dabf0:

  Merge tag 'pull-qga-2025-07-28' of https://repo.or.cz/qemu/armbru into staging (2025-07-28 09:31:19 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 0db7e4cb62026196f06755c77f943294d9879e5a:

  vfio/igd: Fix VGA regions are not exposed in legacy mode (2025-07-28 17:52:34 +0200)

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

* Fixed regression introduced by the `use-legacy-x86-rom` property
* Fixed regressions on IGD passthrough in legacy mode
* Fixed region mappings of sub-page BARs after CPR
* Removed build of SEV on 32-bit hosts

----------------------------------------------------------------
Cédric Le Goater (2):
      hw/i386: Fix 'use-legacy-x86-rom' property compatibility
      i386: Build SEV only for 64-bit target

Steve Sistare (1):
      vfio: fix sub-page bar after cpr

Tomita Moeko (2):
      vfio/igd: Require host VGA decode for legacy mode
      vfio/igd: Fix VGA regions are not exposed in legacy mode

 docs/igd-assign.txt |  1 +
 hw/vfio/pci.h       |  2 ++
 hw/vfio/types.h     |  2 ++
 hw/core/machine.c   |  2 +-
 hw/i386/microvm.c   |  2 +-
 hw/i386/pc_piix.c   |  2 +-
 hw/i386/pc_q35.c    |  2 +-
 hw/vfio/cpr.c       |  2 ++
 hw/vfio/igd.c       | 19 ++++++++++++-------
 hw/vfio/pci.c       | 29 ++++++++++++++++++++++++-----
 hw/i386/Kconfig     |  2 +-
 11 files changed, 48 insertions(+), 17 deletions(-)



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

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

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-03 10:33 [PULL 0/5] vfio queue Cédric Le Goater
2025-10-03 10:33 ` [PULL 1/5] vfio: Remove workaround for kernel DMA unmap overflow bug Cédric Le Goater
2025-10-03 10:33 ` [PULL 2/5] system/iommufd: Use uint64_t type for IOVA mapping size Cédric Le Goater
2025-10-03 10:33 ` [PULL 3/5] hw/vfio: Reorder vfio_container_query_dirty_bitmap() trace format Cédric Le Goater
2025-10-03 10:33 ` [PULL 4/5] hw/vfio: Avoid ram_addr_t in vfio_container_query_dirty_bitmap() Cédric Le Goater
2025-10-03 10:33 ` [PULL 5/5] hw/vfio: Use uint64_t for IOVA mapping size in vfio_container_dma_*map Cédric Le Goater
2025-10-03 17:33 ` [PULL 0/5] vfio queue Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2025-07-29  6:26 Cédric Le Goater
2025-07-29 16:59 ` 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).