All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/21] virtio,pc,pci: features, cleanups, fixes
@ 2023-12-26  9:23 Michael S. Tsirkin
  2023-12-26  9:24 ` [PULL 01/21] virtio: rng: Check notifier helpers for VIRTIO_CONFIG_IRQ_IDX Michael S. Tsirkin
                   ` (22 more replies)
  0 siblings, 23 replies; 25+ messages in thread
From: Michael S. Tsirkin @ 2023-12-26  9:23 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit 80f1709aa0eb4de09b4240563463f991a5b9d855:

  Merge tag 'pull-loongarch-20231221' of https://gitlab.com/gaosong/qemu into staging (2023-12-21 19:44:19 -0500)

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 7b67b2f0f4f7c5ec888a331af599d9daff735d60:

  vdpa: move memory listener to vhost_vdpa_shared (2023-12-25 11:34:55 -0500)

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

vhost-scsi support for worker ioctls

fixes, cleanups all over the place.

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

----------------------------------------------------------------
Aaron Young (1):
      hw/acpi: propagate vcpu hotplug after switch to modern interface

Dongli Zhang (1):
      vhost-scsi: fix usage of error_reportf_err()

Eugenio Pérez (14):
      vdpa: do not set virtio status bits if unneeded
      vdpa: add VhostVDPAShared
      vdpa: move iova tree to the shared struct
      vdpa: move iova_range to vhost_vdpa_shared
      vdpa: move shadow_data to vhost_vdpa_shared
      vdpa: use vdpa shared for tracing
      vdpa: move file descriptor to vhost_vdpa_shared
      vdpa: move iotlb_batch_begin_sent to vhost_vdpa_shared
      vdpa: move backend_cap to vhost_vdpa_shared
      vdpa: remove msg type of vhost_vdpa
      vdpa: move iommu_list to vhost_vdpa_shared
      vdpa: use VhostVDPAShared in vdpa_dma_map and unmap
      vdpa: use dev_shared in vdpa_iommu
      vdpa: move memory listener to vhost_vdpa_shared

Mathieu Poirier (1):
      virtio: rng: Check notifier helpers for VIRTIO_CONFIG_IRQ_IDX

Mike Christie (2):
      vhost: Add worker backend callouts
      vhost-scsi: Add support for a worker thread per virtqueue

Zhao Liu (1):
      tests: bios-tables-test: Rename smbios type 4 related test functions

wangmeiling (1):
      Fix bugs when VM shutdown with virtio-gpu unplugged

 include/hw/virtio/vhost-backend.h |  14 ++++
 include/hw/virtio/vhost-vdpa.h    |  40 ++++++----
 include/hw/virtio/virtio-scsi.h   |   1 +
 hw/acpi/cpu_hotplug.c             |  20 ++++-
 hw/display/virtio-gpu-base.c      |   4 +
 hw/scsi/vhost-scsi.c              |  66 ++++++++++++++-
 hw/scsi/vhost-user-scsi.c         |   3 +-
 hw/virtio/vdpa-dev.c              |   7 +-
 hw/virtio/vhost-backend.c         |  28 +++++++
 hw/virtio/vhost-user-rng.c        |  16 ++++
 hw/virtio/vhost-vdpa.c            | 164 ++++++++++++++++++++------------------
 net/vhost-vdpa.c                  | 116 +++++++++++++--------------
 tests/qtest/bios-tables-test.c    |  20 ++---
 hw/virtio/trace-events            |  14 ++--
 14 files changed, 334 insertions(+), 179 deletions(-)



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

end of thread, other threads:[~2023-12-26 17:00 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-26  9:23 [PULL 00/21] virtio,pc,pci: features, cleanups, fixes Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 01/21] virtio: rng: Check notifier helpers for VIRTIO_CONFIG_IRQ_IDX Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 02/21] tests: bios-tables-test: Rename smbios type 4 related test functions Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 03/21] vhost: Add worker backend callouts Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 04/21] vhost-scsi: Add support for a worker thread per virtqueue Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 05/21] hw/acpi: propagate vcpu hotplug after switch to modern interface Michael S. Tsirkin
2023-12-26  9:49   ` Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 07/21] Fix bugs when VM shutdown with virtio-gpu unplugged Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 08/21] vdpa: do not set virtio status bits if unneeded Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 09/21] vdpa: add VhostVDPAShared Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 10/21] vdpa: move iova tree to the shared struct Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 11/21] vdpa: move iova_range to vhost_vdpa_shared Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 12/21] vdpa: move shadow_data " Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 13/21] vdpa: use vdpa shared for tracing Michael S. Tsirkin
2023-12-26  9:24 ` [PULL 14/21] vdpa: move file descriptor to vhost_vdpa_shared Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 15/21] vdpa: move iotlb_batch_begin_sent " Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 16/21] vdpa: move backend_cap " Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 17/21] vdpa: remove msg type of vhost_vdpa Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 18/21] vdpa: move iommu_list to vhost_vdpa_shared Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 19/21] vdpa: use VhostVDPAShared in vdpa_dma_map and unmap Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 20/21] vdpa: use dev_shared in vdpa_iommu Michael S. Tsirkin
2023-12-26  9:25 ` [PULL 21/21] vdpa: move memory listener to vhost_vdpa_shared Michael S. Tsirkin
2023-12-26  9:51 ` [PULL 06/21] vhost-scsi: fix usage of error_reportf_err() Michael S. Tsirkin
2023-12-26  9:52 ` [PULL 00/21] virtio,pc,pci: features, cleanups, fixes Michael S. Tsirkin
2023-12-26 14:15 ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.