[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/4] virtio-dmabuf: introduce virtio-dmabuf
|
From: |
Cornelia Huck |
|
Subject: |
Re: [PATCH 1/4] virtio-dmabuf: introduce virtio-dmabuf |
|
Date: |
Mon, 08 May 2023 15:12:09 +0200 |
|
User-agent: |
Notmuch/0.37 (https://notmuchmail.org) |
On Wed, May 03 2023, Albert Esteve <aesteve@redhat.com> wrote:
> This API manages objects (in this iteration,
> dmabuf fds) that can be shared along different
> virtio devices.
>
> The API allows the different devices to add,
> remove and/or retrieve the objects by simply
> invoking the public functions that reside in the
> virtio-dmabuf file.
>
> Signed-off-by: Albert Esteve <aesteve@redhat.com>
> ---
> hw/display/meson.build | 1 +
> hw/display/virtio-dmabuf.c | 88 +++++++++++++++++++++++
> include/hw/virtio/virtio-dmabuf.h | 58 ++++++++++++++++
> tests/unit/meson.build | 1 +
> tests/unit/test-virtio-dmabuf.c | 112 ++++++++++++++++++++++++++++++
> 5 files changed, 260 insertions(+)
> 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
>
> diff --git a/hw/display/meson.build b/hw/display/meson.build
> index 17165bd536..62a27395c0 100644
> --- a/hw/display/meson.build
> +++ b/hw/display/meson.build
> @@ -37,6 +37,7 @@ softmmu_ss.add(when: 'CONFIG_MACFB', if_true:
> files('macfb.c'))
> softmmu_ss.add(when: 'CONFIG_NEXTCUBE', if_true: files('next-fb.c'))
>
> softmmu_ss.add(when: 'CONFIG_VGA', if_true: files('vga.c'))
> +softmmu_ss.add(when: 'CONFIG_VIRTIO', if_true: files('virtio-dmabuf.c'))
>
> if (config_all_devices.has_key('CONFIG_VGA_CIRRUS') or
> config_all_devices.has_key('CONFIG_VGA_PCI') or
> diff --git a/hw/display/virtio-dmabuf.c b/hw/display/virtio-dmabuf.c
> new file mode 100644
General comment: new files should be covered in MAINTAINERS; not sure if
there is any generic section that could match it, or if this should go
into a new section.
> index 0000000000..3db939a2e3
> --- /dev/null
> +++ b/hw/display/virtio-dmabuf.c
Is virtio-dmabuf only useful for stuff under display/, or could it go
into a more generic section?
[PATCH 3/4] vhost-user: refactor send_resp code, Albert Esteve, 2023/05/03
[PATCH 4/4] libvhost-user: add write_msg cb to dev struct, Albert Esteve, 2023/05/03