qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/17] virtio,pci,pc: bugfixes
@ 2025-08-01 14:24 Michael S. Tsirkin
  2025-08-01 14:25 ` [PULL 01/17] virtio: fix off-by-one and invalid access in virtqueue_ordered_fill Michael S. Tsirkin
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Michael S. Tsirkin @ 2025-08-01 14:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit 4e06566dbd1b1251c2788af26a30bd148d4eb6c1:

  Merge tag 'pull-riscv-to-apply-20250730-2' of https://github.com/alistair23/qemu into staging (2025-07-30 09:59:30 -0400)

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 4caf74916d09019e61c91f8cb1166510836d35e8:

  net/vdpa: fix potential fd leak in net_init_vhost_vdpa() (2025-08-01 10:23:50 -0400)

----------------------------------------------------------------
virtio,pci,pc: bugfixes

small fixes all over the place.

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

----------------------------------------------------------------
Akihiko Odaki (2):
      virtio-net: Fix VLAN filter table reset timing
      pcie_sriov: Fix configuration and state synchronization

David Woodhouse (1):
      intel_iommu: Allow both Status Write and Interrupt Flag in QI wait

Hanna Czenczek (2):
      vhost: Do not abort on log-start error
      vhost: Do not abort on log-stop error

Jonah Palmer (1):
      virtio: fix off-by-one and invalid access in virtqueue_ordered_fill

Mauro Carvalho Chehab (3):
      tests/acpi: virt: add an empty HEST file
      tests/qtest/bios-tables-test: extend to also check HEST table
      tests/acpi: virt: update HEST file with its current data

Sairaj Kodilkar (6):
      hw/i386/amd_iommu: Fix MMIO register write tracing
      hw/i386/amd_iommu: Remove unused and wrongly set ats_enabled field
      hw/i386/amd_iommu: Move IOAPIC memory region initialization to the end
      hw/i386/amd_iommu: Fix amdvi_write*()
      hw/i386/amd_iommu: Support MMIO writes to the status register
      hw/i386/amd_iommu: Fix event log generation

Stefano Garzarella (2):
      MAINTAINERS: add net/vhost* files under `vhost`
      net/vdpa: fix potential fd leak in net_init_vhost_vdpa()

 hw/i386/amd_iommu.h               |   2 +-
 hw/i386/amd_iommu.c               | 102 +++++++++++++++++++++++++++++---------
 hw/i386/intel_iommu.c             |  15 +++---
 hw/net/virtio-net.c               |   7 +--
 hw/pci/pcie_sriov.c               |  42 +++++++++-------
 hw/virtio/vhost.c                 |   6 ++-
 hw/virtio/virtio.c                |  22 +++++---
 net/vhost-vdpa.c                  |   5 +-
 tests/qtest/bios-tables-test.c    |   2 +-
 MAINTAINERS                       |   1 +
 tests/data/acpi/aarch64/virt/HEST | Bin 0 -> 132 bytes
 11 files changed, 140 insertions(+), 64 deletions(-)
 create mode 100644 tests/data/acpi/aarch64/virt/HEST



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

end of thread, other threads:[~2025-08-01 20:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-01 14:24 [PULL 00/17] virtio,pci,pc: bugfixes Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 01/17] virtio: fix off-by-one and invalid access in virtqueue_ordered_fill Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 02/17] vhost: Do not abort on log-start error Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 03/17] vhost: Do not abort on log-stop error Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 04/17] virtio-net: Fix VLAN filter table reset timing Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 05/17] pcie_sriov: Fix configuration and state synchronization Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 06/17] hw/i386/amd_iommu: Fix MMIO register write tracing Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 07/17] hw/i386/amd_iommu: Remove unused and wrongly set ats_enabled field Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 08/17] hw/i386/amd_iommu: Move IOAPIC memory region initialization to the end Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 09/17] hw/i386/amd_iommu: Fix amdvi_write*() Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 10/17] hw/i386/amd_iommu: Support MMIO writes to the status register Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 11/17] hw/i386/amd_iommu: Fix event log generation Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 12/17] tests/acpi: virt: add an empty HEST file Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 13/17] tests/qtest/bios-tables-test: extend to also check HEST table Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 14/17] tests/acpi: virt: update HEST file with its current data Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 15/17] intel_iommu: Allow both Status Write and Interrupt Flag in QI wait Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 16/17] MAINTAINERS: add net/vhost* files under `vhost` Michael S. Tsirkin
2025-08-01 14:25 ` [PULL 17/17] net/vdpa: fix potential fd leak in net_init_vhost_vdpa() Michael S. Tsirkin
2025-08-01 19:34 ` [PULL 00/17] virtio,pci,pc: bugfixes 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).