From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [PULL 00/21] virtio,pc,pci: features, cleanups, fixes
Date: Tue, 26 Dec 2023 04:52:33 -0500 [thread overview]
Message-ID: <20231226045207-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <cover.1703582625.git.mst@redhat.com>
On Tue, Dec 26, 2023 at 04:24:01AM -0500, Michael S. Tsirkin wrote:
> 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:
f6fe3e333fe0fcb8ef87c669a3a8f84fbee10cb7 now - fixed one of commit logs.
> 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(-)
>
next prev parent reply other threads:[~2023-12-26 9:53 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Michael S. Tsirkin [this message]
2023-12-26 14:15 ` [PULL 00/21] virtio,pc,pci: features, cleanups, fixes Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20231226045207-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.