mbox

[PULL,0/7] virtio,pc,pci: bugfixes

Message ID cover.1712647890.git.mst@redhat.com
State New
Headers show

Pull-request

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

Message

Michael S. Tsirkin April 9, 2024, 7:32 a.m. UTC
The following changes since commit ce64e6224affb8b4e4b019f76d2950270b391af5:

  Merge tag 'qemu-sparc-20240404' of https://github.com/mcayland/qemu into staging (2024-04-04 15:28:06 +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 e1999904a960c33b68fedf26dfb7b8e00abab8f2:

  qdev-monitor: fix error message in find_device_state() (2024-04-09 02:31:33 -0400)

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

Tiny fixes: important but mostly obvious ones.  Revert VDPA network sim
for this release as there are questions around it's maintainatiblity.

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

----------------------------------------------------------------
Manos Pitsidianakis (1):
      virtio-snd: rewrite invalid tx/rx message handling

Michael S. Tsirkin (1):
      Revert "hw/virtio: Add support for VDPA network simulation devices"

Vladimir Sementsov-Ogievskiy (2):
      vhost-user-blk: simplify and fix vhost_user_blk_handle_config_change
      qdev-monitor: fix error message in find_device_state()

Wafer (1):
      hw/virtio: Fix packed virtqueue flush used_idx

Zheyu Ma (1):
      virtio-snd: Enhance error handling for invalid transfers

lyx634449800 (1):
      vdpa-dev: Fix the issue of device status not updating when configuration interruption is triggered

 include/hw/audio/virtio-snd.h               |  16 ++-
 include/hw/virtio/virtio-pci.h              |   5 -
 include/hw/virtio/virtio.h                  |  19 ---
 include/standard-headers/linux/virtio_pci.h |   7 --
 hw/audio/virtio-snd.c                       | 129 +++++++++----------
 hw/block/vhost-user-blk.c                   |  11 +-
 hw/net/virtio-net.c                         |  16 ---
 hw/virtio/vdpa-dev.c                        |   7 ++
 hw/virtio/virtio-pci.c                      | 189 +---------------------------
 hw/virtio/virtio.c                          |  51 ++------
 system/qdev-monitor.c                       |   2 +-
 MAINTAINERS                                 |   5 -
 docs/system/device-emulation.rst            |   1 -
 docs/system/devices/vdpa-net.rst            | 121 ------------------
 14 files changed, 97 insertions(+), 482 deletions(-)
 delete mode 100644 docs/system/devices/vdpa-net.rst

Comments

Peter Maydell April 9, 2024, 11:47 a.m. UTC | #1
On Tue, 9 Apr 2024 at 08:32, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> The following changes since commit ce64e6224affb8b4e4b019f76d2950270b391af5:
>
>   Merge tag 'qemu-sparc-20240404' of https://github.com/mcayland/qemu into staging (2024-04-04 15:28:06 +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 e1999904a960c33b68fedf26dfb7b8e00abab8f2:
>
>   qdev-monitor: fix error message in find_device_state() (2024-04-09 02:31:33 -0400)
>
> ----------------------------------------------------------------
> virtio,pc,pci: bugfixes
>
> Tiny fixes: important but mostly obvious ones.  Revert VDPA network sim
> for this release as there are questions around it's maintainatiblity.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>


Applied, thanks.

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

-- PMM