qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 0/9] Net Control VQ support in vDPA SVQ
@ 2022-02-14 19:16 Eugenio Pérez
  2022-02-14 19:16 ` [RFC PATCH 1/9] virtio-net: Expose ctrl virtqueue logic Eugenio Pérez
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Eugenio Pérez @ 2022-02-14 19:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: Laurent Vivier, Parav Pandit, Cindy Lu, Michael S. Tsirkin,
	Jason Wang, Gautam Dawar, Harpreet Singh Anand, Eli Cohen,
	Zhu Lingshan

Control virtqueue is used by networking device for accepting various
commands from the driver. It's a must to support multiqueue and other
configurations.

Shadow VirtQueue (SVQ) [1] already makes possible migration of virtqueue
states, effectively intercepting them so qemu can track what regions of memory
are dirty because device action and needs migration. However, this does not
solve networking device state seen by the driver because CVQ messages, like
changes on MAC addresses from the driver.

To solve that, this series uses SVQ infraestructure proposed at SVQ [1] to
intercept networking control messages used by the device. This way, qemu is
able to update VirtIONet device model and to migrate it. This series needs to
be applied on top of [1].

Ideally, only the control VQ would be shadowed for all the run of qemu and the
rest of virtqueues would be passthrough unless it's migration time. However,
this requires the vDPA device to support address translations from more than
one address space, something that is not possible at the moment with the
current vhost-vDPA API. The API change has been proposed at [2], but use of it
is left for future series.

Sending this as a RFC so some details like error control is still not 100%
tested. Comments are welcomed on every aspect of the patch.

[1] https://lore.kernel.org/qemu-devel/20220121202733.404989-1-eperezma@redhat.com/
[2] https://lkml.org/lkml/2020/9/23/1243

Eugenio Pérez (9):
  virtio-net: Expose ctrl virtqueue logic
  vdpa: Extract get geatures part from vhost_vdpa_get_max_queue_pairs
  virtio: Make virtqueue_alloc_element non-static
  vhost: Add SVQElement
  vhost: Add custom used buffer callback
  vdpa: Add map/unmap operation callback to SVQ
  vhost: Add vhost_svq_inject
  vhost: Add vhost_svq_start_op
  vdpa: control virtqueue support on shadow virtqueue

 hw/virtio/vhost-shadow-virtqueue.h |  25 +++-
 include/hw/virtio/vhost-vdpa.h     |   2 +
 include/hw/virtio/virtio-net.h     |   3 +
 include/hw/virtio/virtio.h         |   1 +
 hw/net/virtio-net.c                |  83 ++++++-----
 hw/virtio/vhost-shadow-virtqueue.c | 217 +++++++++++++++++++++++------
 hw/virtio/vhost-vdpa.c             |  22 ++-
 hw/virtio/virtio.c                 |   2 +-
 net/vhost-vdpa.c                   | 140 +++++++++++++++++--
 9 files changed, 405 insertions(+), 90 deletions(-)

-- 
2.27.0




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

end of thread, other threads:[~2022-02-15 15:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-14 19:16 [RFC PATCH 0/9] Net Control VQ support in vDPA SVQ Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 1/9] virtio-net: Expose ctrl virtqueue logic Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 2/9] vdpa: Extract get geatures part from vhost_vdpa_get_max_queue_pairs Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 3/9] virtio: Make virtqueue_alloc_element non-static Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 4/9] vhost: Add SVQElement Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 5/9] vhost: Add custom used buffer callback Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 6/9] vdpa: Add map/unmap operation callback to SVQ Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 7/9] vhost: Add vhost_svq_inject Eugenio Pérez
2022-02-15  9:46   ` Eugenio Perez Martin
2022-02-14 19:16 ` [RFC PATCH 8/9] vhost: Add vhost_svq_start_op Eugenio Pérez
2022-02-14 19:16 ` [RFC PATCH 9/9] vdpa: control virtqueue support on shadow virtqueue Eugenio Pérez
2022-02-15 15:51 ` [RFC PATCH 0/9] Net Control VQ support in vDPA SVQ Eugenio Perez Martin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).