All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Cc: sgarzare@redhat.com, raphael@enfabrica.net,
	qemu-devel@nongnu.org, yc-core@yandex-team.ru,
	d-tatianin@yandex-team.ru
Subject: Re: [PATCH v7 00/22] vhost refactoring and fixes
Date: Wed, 15 Jul 2026 18:41:55 -0400	[thread overview]
Message-ID: <20260715184145-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20260527061625.11167-1-vsementsov@yandex-team.ru>

On Wed, May 27, 2026 at 09:16:01AM +0300, Vladimir Sementsov-Ogievskiy wrote:
> Hi all. That's a preparation for vhost-user-blk backend-transfer
> feature.
> 
> 07: rebase on master,
> 04: drop extra occurence of system_virtio_ss.add(files('vhost-user-stub.c'))

so patch 10 is the fix?

> Vladimir Sementsov-Ogievskiy (22):
>   vhost-user: rework enabling vrings
>   vhost: drop backend_features field
>   vhost-user: introduce vhost_user_has_protocol_feature() helper
>   vhost: move protocol_features to vhost_user
>   vhost-user-gpu: drop code duplication
>   vhost: make vhost_dev.features private
>   virtio: move common part of _set_guest_notifier to generic code
>   virtio: drop *_set_guest_notifier_fd_handler() helpers
>   vhost-user: keep QIOChannelSocket for backend channel
>   vhost: vhost_virtqueue_start(): fix failure path
>   vhost: make vhost_memory_unmap() null-safe
>   vhost: simplify calls to vhost_memory_unmap()
>   vhost: move vrings mapping to the top of vhost_virtqueue_start()
>   vhost: vhost_virtqueue_start(): drop extra local variables
>   vhost: final refactoring of vhost vrings map/unmap
>   vhost: simplify vhost_dev_init() error-path
>   vhost: move busyloop timeout initialization to vhost_virtqueue_init()
>   vhost: vhost_dev_init(): simplify features initialization
>   hw/virtio/virtio-bus: refactor virtio_bus_set_host_notifier()
>   vhost-user: make trace events more readable
>   vhost-user-blk: add some useful trace-points
>   vhost: add some useful trace-points
> 
>  backends/cryptodev-vhost.c     |   9 +-
>  hw/block/trace-events          |  10 ++
>  hw/block/vhost-user-blk.c      |  26 +++-
>  hw/display/vhost-user-gpu.c    |  11 +-
>  hw/net/vhost_net.c             |  35 ++---
>  hw/s390x/virtio-ccw.c          |  35 +++--
>  hw/scsi/vhost-scsi.c           |   1 -
>  hw/scsi/vhost-user-scsi.c      |   1 -
>  hw/virtio/meson.build          |   1 +
>  hw/virtio/trace-events         |  16 +-
>  hw/virtio/vdpa-dev.c           |   3 +-
>  hw/virtio/vhost-user-base.c    |   8 +-
>  hw/virtio/vhost-user-stub.c    |   6 +
>  hw/virtio/vhost-user.c         | 260 ++++++++++++++++++++++-----------
>  hw/virtio/vhost.c              | 243 +++++++++++++++---------------
>  hw/virtio/virtio-bus.c         |  18 +--
>  hw/virtio/virtio-hmp-cmds.c    |   2 -
>  hw/virtio/virtio-mmio.c        |  41 +-----
>  hw/virtio/virtio-pci.c         |  34 +----
>  hw/virtio/virtio-qmp.c         |  12 +-
>  hw/virtio/virtio.c             |  48 +++---
>  include/hw/virtio/vhost-user.h |   4 +
>  include/hw/virtio/vhost.h      |  63 +++++---
>  include/hw/virtio/virtio-pci.h |   3 -
>  include/hw/virtio/virtio.h     |  15 +-
>  net/vhost-vdpa.c               |   7 +-
>  qapi/virtio.json               |   3 -
>  27 files changed, 500 insertions(+), 415 deletions(-)
>  create mode 100644 hw/virtio/vhost-user-stub.c
> 
> -- 
> 2.52.0



  parent reply	other threads:[~2026-07-15 22:42 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-27  6:16 [PATCH v7 00/22] vhost refactoring and fixes Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 01/22] vhost-user: rework enabling vrings Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 02/22] vhost: drop backend_features field Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 03/22] vhost-user: introduce vhost_user_has_protocol_feature() helper Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 04/22] vhost: move protocol_features to vhost_user Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 05/22] vhost-user-gpu: drop code duplication Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 06/22] vhost: make vhost_dev.features private Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 07/22] virtio: move common part of _set_guest_notifier to generic code Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 08/22] virtio: drop *_set_guest_notifier_fd_handler() helpers Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 09/22] vhost-user: keep QIOChannelSocket for backend channel Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 10/22] vhost: vhost_virtqueue_start(): fix failure path Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 11/22] vhost: make vhost_memory_unmap() null-safe Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 12/22] vhost: simplify calls to vhost_memory_unmap() Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 13/22] vhost: move vrings mapping to the top of vhost_virtqueue_start() Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 14/22] vhost: vhost_virtqueue_start(): drop extra local variables Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 15/22] vhost: final refactoring of vhost vrings map/unmap Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 16/22] vhost: simplify vhost_dev_init() error-path Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 17/22] vhost: move busyloop timeout initialization to vhost_virtqueue_init() Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 18/22] vhost: vhost_dev_init(): simplify features initialization Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 19/22] hw/virtio/virtio-bus: refactor virtio_bus_set_host_notifier() Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 20/22] vhost-user: make trace events more readable Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 21/22] vhost-user-blk: add some useful trace-points Vladimir Sementsov-Ogievskiy
2026-05-27  6:16 ` [PATCH v7 22/22] vhost: " Vladimir Sementsov-Ogievskiy
2026-07-15 22:41 ` Michael S. Tsirkin [this message]
2026-07-15 23:27   ` [PATCH v7 00/22] vhost refactoring and fixes Vladimir Sementsov-Ogievskiy
2026-07-16  5:25     ` Michael S. Tsirkin
2026-07-16 10:39       ` Vladimir Sementsov-Ogievskiy
2026-07-16 11:05         ` Michael S. Tsirkin

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=20260715184145-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=d-tatianin@yandex-team.ru \
    --cc=qemu-devel@nongnu.org \
    --cc=raphael@enfabrica.net \
    --cc=sgarzare@redhat.com \
    --cc=vsementsov@yandex-team.ru \
    --cc=yc-core@yandex-team.ru \
    /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.