All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 00/23] vhost refactoring and fixes
@ 2026-02-06  9:52 Vladimir Sementsov-Ogievskiy
  2026-02-06  9:52 ` [PATCH v5 01/23] vhost-user: rework enabling vrings Vladimir Sementsov-Ogievskiy
                   ` (23 more replies)
  0 siblings, 24 replies; 28+ messages in thread
From: Vladimir Sementsov-Ogievskiy @ 2026-02-06  9:52 UTC (permalink / raw)
  To: mst; +Cc: sgarzare, raphael, qemu-devel, vsementsov, yc-core, d-tatianin

Hi all. That's a preparation for vhost-user-blk backend-transfer
feature.

v5:
04: make vhost_user_has_protocol_feature() public,
    to support new use case in vhost-user-blk.c,
    drop r-b marks
07: add r-bs by Thomas, Eric, Halil
08: keep a-b by Eric
    rename new functions to more generic names
11,15,16,21: add r-b by Raphael

Vladimir Sementsov-Ogievskiy (23):
  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-ccw: virtio_ccw_set_guest_notifier(): fix failure path
  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          |  34 ++---
 hw/scsi/vhost-scsi.c           |   1 -
 hw/scsi/vhost-user-scsi.c      |   1 -
 hw/virtio/trace-events         |  16 +-
 hw/virtio/vdpa-dev.c           |   3 +-
 hw/virtio/vhost-user-base.c    |   8 +-
 hw/virtio/vhost-user.c         | 260 ++++++++++++++++++++++-----------
 hw/virtio/vhost.c              | 238 +++++++++++++++---------------
 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 -
 25 files changed, 491 insertions(+), 411 deletions(-)

-- 
2.52.0



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

end of thread, other threads:[~2026-02-20 21:18 UTC | newest]

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

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.