[PULL v2 00/38] virtio,pci,pc: features, fixes

Michael S. Tsirkin posted 38 patches 1 day, 14 hours ago
Only 0 patches received!
MAINTAINERS                                 |   8 +-
backends/cryptodev-builtin.c                |   9 +-
docs/interop/vhost-user.rst                 |  60 +++++---
docs/system/devices/virtio/vhost-user.rst   |   3 +
hw/acpi/ghes-stub.c                         |   6 +-
hw/acpi/ghes.c                              |  45 +++---
hw/block/vhost-user-blk.c                   |  27 ++++
hw/cxl/cxl-mailbox-utils.c                  |  11 +-
hw/display/virtio-dmabuf.c                  |   6 +-
hw/display/virtio-gpu-virgl.c               |   8 +-
hw/display/virtio-gpu.c                     |   4 +-
hw/i386/intel_iommu.c                       | 204 ++++++++++++++++++++--------
hw/i386/intel_iommu_internal.h              |  14 +-
hw/pci-host/articia.c                       |   1 -
hw/pci-host/aspeed_pcie.c                   |   1 -
hw/pci-host/designware.c                    |   3 -
hw/pci-host/gpex.c                          |   2 -
hw/pci-host/grackle.c                       |   1 -
hw/pci-host/gt64120.c                       |   1 -
hw/pci-host/mv64361.c                       |   1 -
hw/pci-host/pnv_phb.c                       |   1 -
hw/pci-host/ppce500.c                       |   1 -
hw/pci-host/q35.c                           |  28 ++--
hw/pci-host/raven.c                         |   1 -
hw/pci-host/remote.c                        |   1 -
hw/pci-host/sabre.c                         |   1 -
hw/pci-host/uninorth.c                      |   4 -
hw/pci-host/xilinx-pcie.c                   |   2 -
hw/pci/pci.c                                |   4 +
hw/pci/pci_host.c                           |   1 +
hw/pci/pcie.c                               |  21 ++-
hw/pci/pcie_sriov.c                         |   9 +-
hw/pci/shpc.c                               |   1 -
hw/virtio/Kconfig                           |   5 +
hw/virtio/meson.build                       |   3 +
hw/virtio/vhost-shadow-virtqueue.c          |   1 +
hw/virtio/vhost-user-spi-pci.c              |  69 ++++++++++
hw/virtio/vhost-user-spi.c                  |  65 +++++++++
hw/virtio/vhost-user.c                      |   7 +
hw/virtio/vhost-vdpa.c                      |   6 +-
hw/virtio/vhost.c                           |  66 ++++++++-
hw/virtio/virtio-crypto.c                   |   7 +
hw/virtio/virtio-pci.c                      |  20 +--
hw/virtio/virtio-pmem.c                     |   1 -
hw/virtio/virtio.c                          |   4 +-
include/hw/acpi/ghes.h                      |   6 +-
include/hw/i386/intel_iommu.h               |   1 +
include/hw/pci/pcie.h                       |   1 +
include/hw/virtio/vhost-user-blk.h          |   1 +
include/hw/virtio/vhost-user-spi.h          |  25 ++++
include/hw/virtio/vhost-user.h              |   2 +
include/hw/virtio/vhost-vdpa.h              |   8 +-
include/hw/virtio/vhost.h                   |   6 +
include/migration/vmstate.h                 |  10 ++
include/standard-headers/linux/virtio_spi.h | 181 ++++++++++++++++++++++++
target/arm/kvm.c                            |  10 +-
tests/qtest/q35-test.c                      |   6 -
57 files changed, 792 insertions(+), 209 deletions(-)
create mode 100644 hw/virtio/vhost-user-spi-pci.c
create mode 100644 hw/virtio/vhost-user-spi.c
create mode 100644 include/hw/virtio/vhost-user-spi.h
create mode 100644 include/standard-headers/linux/virtio_spi.h
[PULL v2 00/38] virtio,pci,pc: features, fixes
Posted by Michael S. Tsirkin 1 day, 14 hours ago
Dropped most cxl patches for now.
Dropped WADT due to author's request.

The following changes since commit b377abc220fc53e9cab2aac3c73fc20be6d85eea:

  Merge tag 'hw-misc-20260202' of https://github.com/philmd/qemu into staging (2026-02-03 07:52:04 +1000)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 25465c0e1fd74d2118dfec03912f2595eeb497d7:

  hw/cxl: Take into account how many media operations are requested for param check (2026-02-05 05:06:46 -0500)

----------------------------------------------------------------
virtio,pci,pc: features, fixes

intel_iommu:
    SVM support
vhost:
    support for indirect descriptors in shadow virtqueue
vhost-user:
    vhost-user-spi support
    vhost-user-blk inflight migration support
    vhost-user-blk inflight migration support

misc fixes in pci, vhost, virtio, acpi, cxl
cleanups in acpi/ghes

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Akihiko Odaki (1):
      pci/shpc: Do not unparent in instance_finalize()

Alexandr Moshkov (5):
      vhost-user.rst: specify vhost-user back-end action on GET_VRING_BASE
      vhost-user: introduce protocol feature for skip drain on GET_VRING_BASE
      vmstate: introduce VMSTATE_VBUFFER_UINT64
      vhost: add vmstate for inflight region with inner buffer
      vhost-user-blk: support inter-host inflight migration

Clément Mathieu--Drif (7):
      intel_iommu: Add an IOMMU index for pre-translated addresses
      intel_iommu: Support memory operations with pre-translated addresses
      pcie: Add a function to check if pasid privileged mode is enabled
      pci: Block ATS requests when privileged mode is disabled
      intel_iommu: Handle insufficient permissions during translation requests
      intel_iommu: Minimal handling of privileged ATS request
      intel_iommu: Add a CLI option to enable SVM

Daniil Tatianin (1):
      virtio/vhost: don't consider non-MAP_SHARED regions public

Dorinda Bassey (1):
      virtio-dmabuf: Ensure UUID persistence for hash table insertion

Eugenio Pérez (1):
      vhost: accept indirect descriptors in shadow virtqueue

Gavin Shan (5):
      acpi/ghes: Automate data block cleanup in acpi_ghes_memory_errors()
      acpi/ghes: Abort in acpi_ghes_memory_errors() if necessary
      target/arm/kvm: Exit on error from acpi_ghes_memory_errors()
      acpi/ghes: Bail early on error from get_ghes_source_offsets()
      acpi/ghes: Use error_fatal in acpi_ghes_memory_errors()

Haixu Cui (2):
      standard-headers: Update virtio_spi.h from Linux v6.18-rc3
      virtio-spi: Add vhost-user-spi device support

Honglei Huang (2):
      virtio-gpu: fix error handling in virgl_cmd_resource_create_blob
      virtio-gpu: use consistent error checking for virtio_gpu_create_mapping_iov

Igor Mammedov (1):
      q35: Fix migration of SMRAM state

Jean-Philippe Brucker (1):
      MAINTAINERS: Update VIOT maintainer

Joelle van Dyne (1):
      virtio-gpu-virgl: correct parent for blob memory region

Jonathan Cameron (2):
      hw/cxl: Check for overflow on santize media as both base and offset 64bit.
      hw/cxl: Take into account how many media operations are requested for param check

Kevin Wolf (2):
      virtio: Fix crash when sriov-pf is set for non-PCI-Express device
      pcie_sriov: Fix PCI_SRIOV_* accesses in pcie_sriov_pf_exit()

Li Chen (1):
      virtio-pmem: ignore empty queue notifications

Michael S. Tsirkin (1):
      vhost-user: ancilliary -> ancillary

Philippe Mathieu-Daudé (1):
      hw/pci-host: Set DEVICE_CATEGORY_BRIDGE once in parent class_init()

Wafer Xie (1):
      vdpa: fix vhost-vdpa suspended state not be shared

zhenwei pi (2):
      hw/virtio/virtio-crypto: verify asym request size
      cryptodev-builtin: Limit the maximum size

 MAINTAINERS                                 |   8 +-
 backends/cryptodev-builtin.c                |   9 +-
 docs/interop/vhost-user.rst                 |  60 +++++---
 docs/system/devices/virtio/vhost-user.rst   |   3 +
 hw/acpi/ghes-stub.c                         |   6 +-
 hw/acpi/ghes.c                              |  45 +++---
 hw/block/vhost-user-blk.c                   |  27 ++++
 hw/cxl/cxl-mailbox-utils.c                  |  11 +-
 hw/display/virtio-dmabuf.c                  |   6 +-
 hw/display/virtio-gpu-virgl.c               |   8 +-
 hw/display/virtio-gpu.c                     |   4 +-
 hw/i386/intel_iommu.c                       | 204 ++++++++++++++++++++--------
 hw/i386/intel_iommu_internal.h              |  14 +-
 hw/pci-host/articia.c                       |   1 -
 hw/pci-host/aspeed_pcie.c                   |   1 -
 hw/pci-host/designware.c                    |   3 -
 hw/pci-host/gpex.c                          |   2 -
 hw/pci-host/grackle.c                       |   1 -
 hw/pci-host/gt64120.c                       |   1 -
 hw/pci-host/mv64361.c                       |   1 -
 hw/pci-host/pnv_phb.c                       |   1 -
 hw/pci-host/ppce500.c                       |   1 -
 hw/pci-host/q35.c                           |  28 ++--
 hw/pci-host/raven.c                         |   1 -
 hw/pci-host/remote.c                        |   1 -
 hw/pci-host/sabre.c                         |   1 -
 hw/pci-host/uninorth.c                      |   4 -
 hw/pci-host/xilinx-pcie.c                   |   2 -
 hw/pci/pci.c                                |   4 +
 hw/pci/pci_host.c                           |   1 +
 hw/pci/pcie.c                               |  21 ++-
 hw/pci/pcie_sriov.c                         |   9 +-
 hw/pci/shpc.c                               |   1 -
 hw/virtio/Kconfig                           |   5 +
 hw/virtio/meson.build                       |   3 +
 hw/virtio/vhost-shadow-virtqueue.c          |   1 +
 hw/virtio/vhost-user-spi-pci.c              |  69 ++++++++++
 hw/virtio/vhost-user-spi.c                  |  65 +++++++++
 hw/virtio/vhost-user.c                      |   7 +
 hw/virtio/vhost-vdpa.c                      |   6 +-
 hw/virtio/vhost.c                           |  66 ++++++++-
 hw/virtio/virtio-crypto.c                   |   7 +
 hw/virtio/virtio-pci.c                      |  20 +--
 hw/virtio/virtio-pmem.c                     |   1 -
 hw/virtio/virtio.c                          |   4 +-
 include/hw/acpi/ghes.h                      |   6 +-
 include/hw/i386/intel_iommu.h               |   1 +
 include/hw/pci/pcie.h                       |   1 +
 include/hw/virtio/vhost-user-blk.h          |   1 +
 include/hw/virtio/vhost-user-spi.h          |  25 ++++
 include/hw/virtio/vhost-user.h              |   2 +
 include/hw/virtio/vhost-vdpa.h              |   8 +-
 include/hw/virtio/vhost.h                   |   6 +
 include/migration/vmstate.h                 |  10 ++
 include/standard-headers/linux/virtio_spi.h | 181 ++++++++++++++++++++++++
 target/arm/kvm.c                            |  10 +-
 tests/qtest/q35-test.c                      |   6 -
 57 files changed, 792 insertions(+), 209 deletions(-)
 create mode 100644 hw/virtio/vhost-user-spi-pci.c
 create mode 100644 hw/virtio/vhost-user-spi.c
 create mode 100644 include/hw/virtio/vhost-user-spi.h
 create mode 100644 include/standard-headers/linux/virtio_spi.h


Re: [PULL v2 00/38] virtio,pci,pc: features, fixes
Posted by Peter Maydell 1 day, 10 hours ago
On Thu, 5 Feb 2026 at 12:08, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> Dropped most cxl patches for now.
> Dropped WADT due to author's request.
>
> The following changes since commit b377abc220fc53e9cab2aac3c73fc20be6d85eea:
>
>   Merge tag 'hw-misc-20260202' of https://github.com/philmd/qemu into staging (2026-02-03 07:52:04 +1000)
>
> are available in the Git repository at:
>
>   https://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>
> for you to fetch changes up to 25465c0e1fd74d2118dfec03912f2595eeb497d7:
>
>   hw/cxl: Take into account how many media operations are requested for param check (2026-02-05 05:06:46 -0500)
>
> ----------------------------------------------------------------
> virtio,pci,pc: features, fixes
>
> intel_iommu:
>     SVM support
> vhost:
>     support for indirect descriptors in shadow virtqueue
> vhost-user:
>     vhost-user-spi support
>     vhost-user-blk inflight migration support
>     vhost-user-blk inflight migration support
>
> misc fixes in pci, vhost, virtio, acpi, cxl
> cleanups in acpi/ghes
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------



Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/11.0
for any user-visible changes.

-- PMM