qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/4] Virtio shared dma-buf
@ 2023-05-18 12:02 Albert Esteve
  2023-05-18 12:02 ` [PATCH v2 1/4] uuid: add hash_func and equal_func Albert Esteve
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Albert Esteve @ 2023-05-18 12:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: marcandre.lureau, Michael S. Tsirkin, kraxel, Fam Zheng,
	Albert Esteve, cohuck

v1 link -> https://lists.gnu.org/archive/html/qemu-devel/2023-05/msg00598.html
v1 -> v2:
    - Add new files to MAINTAINERS
    - Add hash_func and key_equal_func to uuid
    - Expose functions to send vhost-user shared_object messages back instead of exposing write_msg method

This patch covers the required steps to add support for virtio cross-device resource sharing[1],
which support is already available in the kernel.

The main usecase will be sharing dma buffers from virtio-gpu devices (as the exporter
-see VIRTIO_GPU_CMD_RESOURCE_ASSIGN_UUID in [2]), to virtio-video (under discussion)
devices (as the buffer-user or importer). Therefore, even though virtio specs talk about
resources or objects[3], this patch adds the infrastructure with dma-bufs in mind.
Note that virtio specs let the devices themselves define what a vitio object is.

These are the main parts that are covered in the patch:

- Add hash_func and key_equal_func to uuid
- Shared resources table, to hold all resources that can be shared in the host and their assigned UUID
- Internal shared table API for virtio devices to add, lookup and remove resources
- Unit test to verify the API.
- New message to the vhost-user protocol to allow backend to interact with the shared
  table API through the control socket

Applies cleanly to 4ebc33f

[1] - https://lwn.net/Articles/828988/
[2] - https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-3730006
[3] - https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-10500011

Albert Esteve (4):
  uuid: add hash_func and equal_func
  virtio-dmabuf: introduce virtio-dmabuf
  vhost-user: add shared_object msg
  vhost-user: refactor send_resp code

 MAINTAINERS                               |   7 ++
 docs/interop/vhost-user.rst               |  15 +++
 hw/display/meson.build                    |   1 +
 hw/display/virtio-dmabuf.c                |  82 ++++++++++++++++
 hw/virtio/vhost-user.c                    |  90 ++++++++++++++---
 include/hw/virtio/virtio-dmabuf.h         |  59 ++++++++++++
 include/qemu/uuid.h                       |   4 +
 subprojects/libvhost-user/libvhost-user.c |  88 +++++++++++++++++
 subprojects/libvhost-user/libvhost-user.h |  56 +++++++++++
 tests/unit/meson.build                    |   1 +
 tests/unit/test-uuid.c                    |  46 +++++++++
 tests/unit/test-virtio-dmabuf.c           | 112 ++++++++++++++++++++++
 util/uuid.c                               |  38 ++++++++
 13 files changed, 586 insertions(+), 13 deletions(-)
 create mode 100644 hw/display/virtio-dmabuf.c
 create mode 100644 include/hw/virtio/virtio-dmabuf.h
 create mode 100644 tests/unit/test-virtio-dmabuf.c

-- 
2.40.0



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

end of thread, other threads:[~2023-05-22 13:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-18 12:02 [PATCH v2 0/4] Virtio shared dma-buf Albert Esteve
2023-05-18 12:02 ` [PATCH v2 1/4] uuid: add hash_func and equal_func Albert Esteve
2023-05-20  7:23   ` Marc-André Lureau
2023-05-22 13:13     ` Albert Esteve
2023-05-22 13:41       ` Albert Esteve
2023-05-22 13:42         ` Marc-André Lureau
2023-05-18 12:02 ` [PATCH v2 2/4] virtio-dmabuf: introduce virtio-dmabuf Albert Esteve
2023-05-18 12:02 ` [PATCH v2 3/4] vhost-user: add shared_object msg Albert Esteve
2023-05-18 12:02 ` [PATCH v2 4/4] vhost-user: refactor send_resp code Albert Esteve

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).