[PULL 00/14] virtio,pci,pc: fixes for 10.2

Michael S. Tsirkin posted 14 patches 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/cover.1762698873.git.mst@redhat.com
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>, Stefano Garzarella <sgarzare@redhat.com>, Eduardo Habkost <eduardo@habkost.net>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Yanan Wang <wangyanan55@huawei.com>, Zhao Liu <zhao1.liu@intel.com>, Alejandro Jimenez <alejandro.j.jimenez@oracle.com>, Sairaj Kodilkar <sarunkod@amd.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Jason Wang <jasowang@redhat.com>, Yi Liu <yi.l.liu@intel.com>, "Clément Mathieu--Drif" <clement.mathieu--drif@eviden.com>, Igor Mammedov <imammedo@redhat.com>, Ani Sinha <anisinha@redhat.com>
hw/i386/amd_iommu.h                              |   6 +-
hw/i386/intel_iommu_internal.h                   |  17 +++
include/hw/i386/intel_iommu.h                    |   6 +
hw/core/machine.c                                |   4 +
hw/i386/amd_iommu.c                              | 179 +++++++++++++---------
hw/i386/intel_iommu.c                            | 181 +++++++++++++++++++++--
hw/i386/pc.c                                     |   4 +-
hw/net/virtio-net.c                              |   8 +-
hw/pci-host/gpex-acpi.c                          |   2 +-
hw/pci-host/q35.c                                |   2 +-
hw/virtio/vhost-user.c                           |  64 ++++----
MAINTAINERS                                      |   6 +-
docs/interop/vhost-user.rst                      |   7 +
hw/i386/trace-events                             |   4 +
tests/data/acpi/aarch64/virt/DSDT                | Bin 5337 -> 5337 bytes
tests/data/acpi/aarch64/virt/DSDT.acpihmatvirt   | Bin 5423 -> 5423 bytes
tests/data/acpi/aarch64/virt/DSDT.acpipcihp      | Bin 6246 -> 6246 bytes
tests/data/acpi/aarch64/virt/DSDT.hpoffacpiindex | Bin 5391 -> 5391 bytes
tests/data/acpi/aarch64/virt/DSDT.memhp          | Bin 6698 -> 6698 bytes
tests/data/acpi/aarch64/virt/DSDT.pxb            | Bin 7812 -> 7812 bytes
tests/data/acpi/aarch64/virt/DSDT.smmuv3-dev     | Bin 10274 -> 10274 bytes
tests/data/acpi/aarch64/virt/DSDT.smmuv3-legacy  | Bin 10274 -> 10274 bytes
tests/data/acpi/aarch64/virt/DSDT.topology       | Bin 5539 -> 5539 bytes
tests/data/acpi/aarch64/virt/DSDT.viot           | Bin 5354 -> 5354 bytes
tests/data/acpi/loongarch64/virt/DSDT            | Bin 4603 -> 4603 bytes
tests/data/acpi/loongarch64/virt/DSDT.memhp      | Bin 5824 -> 5824 bytes
tests/data/acpi/loongarch64/virt/DSDT.numamem    | Bin 4609 -> 4609 bytes
tests/data/acpi/loongarch64/virt/DSDT.topology   | Bin 4905 -> 4905 bytes
tests/data/acpi/riscv64/virt/DSDT                | Bin 3538 -> 3538 bytes
tests/data/acpi/x86/microvm/DSDT.pcie            | Bin 2985 -> 2985 bytes
30 files changed, 371 insertions(+), 119 deletions(-)
[PULL 00/14] virtio,pci,pc: fixes for 10.2
Posted by Michael S. Tsirkin 1 month ago
The following changes since commit 917ac07f9aef579b9538a81d45f45850aba42906:

  Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2025-11-05 16:07:18 +0100)

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 97f24a0496be9e0a7216fea1fa0d54c1db9066e2:

  vhost-user.rst: clarify when FDs can be sent (2025-11-09 08:25:53 -0500)

----------------------------------------------------------------
virtio,pci,pc: fixes for 10.2

small fixes all over the place.
UDP tunnel and TSEG tweaks are kind of borderline,
but I feel not making the change now will just add
to compatibility headaches down the road.

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

----------------------------------------------------------------
Albert Esteve (1):
      vhost-user: fix shared object lookup handler logic

Alejandro Jimenez (1):
      MAINTAINERS: Update entry for AMD-Vi Emulation

Alyssa Ross (1):
      vhost-user.rst: clarify when FDs can be sent

Eric Auger (1):
      hw/pci-host/gpex-acpi: Fix _DSM function 0 support return value

Gerd Hoffmann (1):
      q35: increase default tseg size

German Maglione (1):
      vhost-user: make vhost_set_vring_file() synchronous

Paolo Abeni (1):
      virtio-net: Advertise UDP tunnel GSO support by default

Sairaj Kodilkar (2):
      amd_iommu: Fix handling of devices on buses != 0
      amd_iommu: Support 64-bit address for IOTLB lookup

Shameer Kolothum (2):
      tests/qtest/bios-tables-test: Prepare for _DSM change in the DSDT table
      tests/qtest/bios-tables-test: Update DSDT blobs after GPEX _DSM change

Zhenzhong Duan (3):
      intel_iommu: Handle PASID cache invalidation
      intel_iommu: Reset pasid cache when system level reset
      intel_iommu: Fix DMA failure when guest switches IOMMU domain

 hw/i386/amd_iommu.h                              |   6 +-
 hw/i386/intel_iommu_internal.h                   |  17 +++
 include/hw/i386/intel_iommu.h                    |   6 +
 hw/core/machine.c                                |   4 +
 hw/i386/amd_iommu.c                              | 179 +++++++++++++---------
 hw/i386/intel_iommu.c                            | 181 +++++++++++++++++++++--
 hw/i386/pc.c                                     |   4 +-
 hw/net/virtio-net.c                              |   8 +-
 hw/pci-host/gpex-acpi.c                          |   2 +-
 hw/pci-host/q35.c                                |   2 +-
 hw/virtio/vhost-user.c                           |  64 ++++----
 MAINTAINERS                                      |   6 +-
 docs/interop/vhost-user.rst                      |   7 +
 hw/i386/trace-events                             |   4 +
 tests/data/acpi/aarch64/virt/DSDT                | Bin 5337 -> 5337 bytes
 tests/data/acpi/aarch64/virt/DSDT.acpihmatvirt   | Bin 5423 -> 5423 bytes
 tests/data/acpi/aarch64/virt/DSDT.acpipcihp      | Bin 6246 -> 6246 bytes
 tests/data/acpi/aarch64/virt/DSDT.hpoffacpiindex | Bin 5391 -> 5391 bytes
 tests/data/acpi/aarch64/virt/DSDT.memhp          | Bin 6698 -> 6698 bytes
 tests/data/acpi/aarch64/virt/DSDT.pxb            | Bin 7812 -> 7812 bytes
 tests/data/acpi/aarch64/virt/DSDT.smmuv3-dev     | Bin 10274 -> 10274 bytes
 tests/data/acpi/aarch64/virt/DSDT.smmuv3-legacy  | Bin 10274 -> 10274 bytes
 tests/data/acpi/aarch64/virt/DSDT.topology       | Bin 5539 -> 5539 bytes
 tests/data/acpi/aarch64/virt/DSDT.viot           | Bin 5354 -> 5354 bytes
 tests/data/acpi/loongarch64/virt/DSDT            | Bin 4603 -> 4603 bytes
 tests/data/acpi/loongarch64/virt/DSDT.memhp      | Bin 5824 -> 5824 bytes
 tests/data/acpi/loongarch64/virt/DSDT.numamem    | Bin 4609 -> 4609 bytes
 tests/data/acpi/loongarch64/virt/DSDT.topology   | Bin 4905 -> 4905 bytes
 tests/data/acpi/riscv64/virt/DSDT                | Bin 3538 -> 3538 bytes
 tests/data/acpi/x86/microvm/DSDT.pcie            | Bin 2985 -> 2985 bytes
 30 files changed, 371 insertions(+), 119 deletions(-)
Re: [PULL 00/14] virtio,pci,pc: fixes for 10.2
Posted by Richard Henderson 1 month ago
On 11/9/25 15:35, Michael S. Tsirkin wrote:
> The following changes since commit 917ac07f9aef579b9538a81d45f45850aba42906:
> 
>    Merge tag 'for-upstream' ofhttps://gitlab.com/bonzini/qemu into staging (2025-11-05 16:07:18 +0100)
> 
> 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 97f24a0496be9e0a7216fea1fa0d54c1db9066e2:
> 
>    vhost-user.rst: clarify when FDs can be sent (2025-11-09 08:25:53 -0500)
> 
> ----------------------------------------------------------------
> virtio,pci,pc: fixes for 10.2
> 
> small fixes all over the place.
> UDP tunnel and TSEG tweaks are kind of borderline,
> but I feel not making the change now will just add
> to compatibility headaches down the road.

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/10.2 as appropriate.

r~
Re: [PULL 00/14] virtio,pci,pc: fixes for 10.2
Posted by Michael S. Tsirkin 3 weeks, 5 days ago
On Sun, Nov 09, 2025 at 09:35:09AM -0500, Michael S. Tsirkin wrote:
> The following changes since commit 917ac07f9aef579b9538a81d45f45850aba42906:
> 
>   Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2025-11-05 16:07:18 +0100)
> 
> 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 97f24a0496be9e0a7216fea1fa0d54c1db9066e2:
> 
>   vhost-user.rst: clarify when FDs can be sent (2025-11-09 08:25:53 -0500)
> 
> ----------------------------------------------------------------
> virtio,pci,pc: fixes for 10.2
> 
> small fixes all over the place.
> UDP tunnel and TSEG tweaks are kind of borderline,
> but I feel not making the change now will just add
> to compatibility headaches down the road.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------


Is there any issue with this pull request?
Just making sure these fixes have not been lost.



> Albert Esteve (1):
>       vhost-user: fix shared object lookup handler logic
> 
> Alejandro Jimenez (1):
>       MAINTAINERS: Update entry for AMD-Vi Emulation
> 
> Alyssa Ross (1):
>       vhost-user.rst: clarify when FDs can be sent
> 
> Eric Auger (1):
>       hw/pci-host/gpex-acpi: Fix _DSM function 0 support return value
> 
> Gerd Hoffmann (1):
>       q35: increase default tseg size
> 
> German Maglione (1):
>       vhost-user: make vhost_set_vring_file() synchronous
> 
> Paolo Abeni (1):
>       virtio-net: Advertise UDP tunnel GSO support by default
> 
> Sairaj Kodilkar (2):
>       amd_iommu: Fix handling of devices on buses != 0
>       amd_iommu: Support 64-bit address for IOTLB lookup
> 
> Shameer Kolothum (2):
>       tests/qtest/bios-tables-test: Prepare for _DSM change in the DSDT table
>       tests/qtest/bios-tables-test: Update DSDT blobs after GPEX _DSM change
> 
> Zhenzhong Duan (3):
>       intel_iommu: Handle PASID cache invalidation
>       intel_iommu: Reset pasid cache when system level reset
>       intel_iommu: Fix DMA failure when guest switches IOMMU domain
> 
>  hw/i386/amd_iommu.h                              |   6 +-
>  hw/i386/intel_iommu_internal.h                   |  17 +++
>  include/hw/i386/intel_iommu.h                    |   6 +
>  hw/core/machine.c                                |   4 +
>  hw/i386/amd_iommu.c                              | 179 +++++++++++++---------
>  hw/i386/intel_iommu.c                            | 181 +++++++++++++++++++++--
>  hw/i386/pc.c                                     |   4 +-
>  hw/net/virtio-net.c                              |   8 +-
>  hw/pci-host/gpex-acpi.c                          |   2 +-
>  hw/pci-host/q35.c                                |   2 +-
>  hw/virtio/vhost-user.c                           |  64 ++++----
>  MAINTAINERS                                      |   6 +-
>  docs/interop/vhost-user.rst                      |   7 +
>  hw/i386/trace-events                             |   4 +
>  tests/data/acpi/aarch64/virt/DSDT                | Bin 5337 -> 5337 bytes
>  tests/data/acpi/aarch64/virt/DSDT.acpihmatvirt   | Bin 5423 -> 5423 bytes
>  tests/data/acpi/aarch64/virt/DSDT.acpipcihp      | Bin 6246 -> 6246 bytes
>  tests/data/acpi/aarch64/virt/DSDT.hpoffacpiindex | Bin 5391 -> 5391 bytes
>  tests/data/acpi/aarch64/virt/DSDT.memhp          | Bin 6698 -> 6698 bytes
>  tests/data/acpi/aarch64/virt/DSDT.pxb            | Bin 7812 -> 7812 bytes
>  tests/data/acpi/aarch64/virt/DSDT.smmuv3-dev     | Bin 10274 -> 10274 bytes
>  tests/data/acpi/aarch64/virt/DSDT.smmuv3-legacy  | Bin 10274 -> 10274 bytes
>  tests/data/acpi/aarch64/virt/DSDT.topology       | Bin 5539 -> 5539 bytes
>  tests/data/acpi/aarch64/virt/DSDT.viot           | Bin 5354 -> 5354 bytes
>  tests/data/acpi/loongarch64/virt/DSDT            | Bin 4603 -> 4603 bytes
>  tests/data/acpi/loongarch64/virt/DSDT.memhp      | Bin 5824 -> 5824 bytes
>  tests/data/acpi/loongarch64/virt/DSDT.numamem    | Bin 4609 -> 4609 bytes
>  tests/data/acpi/loongarch64/virt/DSDT.topology   | Bin 4905 -> 4905 bytes
>  tests/data/acpi/riscv64/virt/DSDT                | Bin 3538 -> 3538 bytes
>  tests/data/acpi/x86/microvm/DSDT.pcie            | Bin 2985 -> 2985 bytes
>  30 files changed, 371 insertions(+), 119 deletions(-)
>
Re: [PULL 00/14] virtio,pci,pc: fixes for 10.2
Posted by Peter Maydell 3 weeks, 5 days ago
On Mon, 17 Nov 2025 at 10:28, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Sun, Nov 09, 2025 at 09:35:09AM -0500, Michael S. Tsirkin wrote:
> > The following changes since commit 917ac07f9aef579b9538a81d45f45850aba42906:
> >
> >   Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2025-11-05 16:07:18 +0100)
> >
> > 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 97f24a0496be9e0a7216fea1fa0d54c1db9066e2:
> >
> >   vhost-user.rst: clarify when FDs can be sent (2025-11-09 08:25:53 -0500)
> >
> > ----------------------------------------------------------------
> > virtio,pci,pc: fixes for 10.2
> >
> > small fixes all over the place.
> > UDP tunnel and TSEG tweaks are kind of borderline,
> > but I feel not making the change now will just add
> > to compatibility headaches down the road.
> >
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> >
> > ----------------------------------------------------------------
>
>
> Is there any issue with this pull request?
> Just making sure these fixes have not been lost.

They were merged last week (merge commit 593aee5df98b4a862).

-- PMM