From: Stefano Garzarella <sgarzare@redhat.com>
To: Coiby Xu <coiby.xu@gmail.com>
Cc: kwolf@redhat.com, bharatlkmlkvm@gmail.com, qemu-devel@nongnu.org,
stefanha@redhat.com
Subject: Re: [PATCH v8 0/4] vhost-user block device backend implementation
Date: Thu, 11 Jun 2020 14:37:03 +0200 [thread overview]
Message-ID: <20200611123703.jpokj4m75woxt55f@steredhat> (raw)
In-Reply-To: <20200604233538.256325-1-coiby.xu@gmail.com>
Hi Coiby Xu,
On Fri, Jun 05, 2020 at 07:35:34AM +0800, Coiby Xu wrote:
> v8
> - re-try connecting to socket server to fix asan error
> - fix license naming issue
>
> v7
> - fix docker-test-debug@fedora errors by freeing malloced memory
>
> v6
> - add missing license header and include guard
> - vhost-user server only serve one client one time
> - fix a bug in custom vu_message_read
> - using qemu-storage-daemon to start vhost-user-blk-server
> - a bug fix to pass docker-test-clang@ubuntu
>
> v5:
> * re-use vu_kick_cb in libvhost-user
> * keeping processing VhostUserMsg in the same coroutine until there is
> detachment/attachment of AIOContext
> * Spawn separate coroutine for each VuVirtqElement
> * Other changes including relocating vhost-user-blk-server.c, coding
> style etc.
>
> v4:
> * add object properties in class_init
> * relocate vhost-user-blk-test
> * other changes including using SocketAddress, coding style, etc.
>
> v3:
> * separate generic vhost-user-server code from vhost-user-blk-server
> code
> * re-write vu_message_read and kick hander function as coroutines to
> directly call blk_co_preadv, blk_co_pwritev, etc.
> * add aio_context notifier functions to support multi-threading model
> * other fixes regarding coding style, warning report, etc.
>
> v2:
> * Only enable this feature for Linux because eventfd is a Linux-specific
> feature
>
>
> This patch series is an implementation of vhost-user block device
> backend server, thanks to Stefan and Kevin's guidance.
>
> Vhost-user block device backend server is a UserCreatable object and can be
> started using object_add,
>
> (qemu) object_add vhost-user-blk-server,id=ID,unix-socket=/tmp/vhost-user-blk_vhost.socket,node-name=DRIVE_NAME,writable=off,blk-size=512
> (qemu) object_del ID
>
> or appending the "-object" option when starting QEMU,
>
> $ -object vhost-user-blk-server,id=disk,unix-socket=/tmp/vhost-user-blk_vhost.socket,node-name=DRIVE_NAME,writable=off,blk-size=512
>
> Then vhost-user client can connect to the server backend.
> For example, QEMU could act as a client,
>
> $ -m 256 -object memory-backend-memfd,id=mem,size=256M,share=on -numa node,memdev=mem -chardev socket,id=char1,path=/tmp/vhost-user-blk_vhost.socket -device vhost-user-blk-pci,id=blk0,chardev=char1
>
> And guest OS could access this vhost-user block device after mounting it.
>
> Coiby Xu (4):
> Allow vu_message_read to be replaced
> generic vhost user server
> vhost-user block device backend server
> new qTest case to test the vhost-user-blk-server
>
> block/Makefile.objs | 1 +
> block/export/vhost-user-blk-server.c | 716 ++++++++++++++++++++
> block/export/vhost-user-blk-server.h | 34 +
> contrib/libvhost-user/libvhost-user-glib.c | 2 +-
> contrib/libvhost-user/libvhost-user.c | 11 +-
> contrib/libvhost-user/libvhost-user.h | 21 +
> softmmu/vl.c | 4 +
> tests/Makefile.include | 3 +-
> tests/qtest/Makefile.include | 2 +
> tests/qtest/libqos/vhost-user-blk.c | 130 ++++
> tests/qtest/libqos/vhost-user-blk.h | 44 ++
> tests/qtest/libqtest.c | 54 +-
> tests/qtest/libqtest.h | 38 ++
> tests/qtest/vhost-user-blk-test.c | 737 +++++++++++++++++++++
> tests/vhost-user-bridge.c | 2 +
> tools/virtiofsd/fuse_virtio.c | 4 +-
> util/Makefile.objs | 1 +
> util/vhost-user-server.c | 406 ++++++++++++
> util/vhost-user-server.h | 59 ++
> 19 files changed, 2229 insertions(+), 40 deletions(-)
> create mode 100644 block/export/vhost-user-blk-server.c
> create mode 100644 block/export/vhost-user-blk-server.h
> create mode 100644 tests/qtest/libqos/vhost-user-blk.c
> create mode 100644 tests/qtest/libqos/vhost-user-blk.h
> create mode 100644 tests/qtest/vhost-user-blk-test.c
> create mode 100644 util/vhost-user-server.c
> create mode 100644 util/vhost-user-server.h
>
Should we add an entry in the MAINTAINERS file for some of the new files?
(e.g. util/vhost-user-server.*)
Thanks,
Stefano
next prev parent reply other threads:[~2020-06-11 12:38 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-04 23:35 [PATCH v8 0/4] vhost-user block device backend implementation Coiby Xu
2020-06-04 23:35 ` [PATCH v8 1/4] Allow vu_message_read to be replaced Coiby Xu
2020-06-11 10:45 ` Stefan Hajnoczi
2020-06-11 11:26 ` Marc-André Lureau
2020-06-04 23:35 ` [PATCH v8 2/4] generic vhost user server Coiby Xu
2020-06-11 13:14 ` Stefan Hajnoczi
2020-06-14 18:43 ` Coiby Xu
2020-06-04 23:35 ` [PATCH v8 3/4] vhost-user block device backend server Coiby Xu
2020-06-11 15:24 ` Stefan Hajnoczi
2020-06-14 19:04 ` Coiby Xu
2020-06-04 23:35 ` [PATCH v8 4/4] new qTest case to test the vhost-user-blk-server Coiby Xu
2020-06-05 5:01 ` Thomas Huth
2020-06-05 6:22 ` Coiby Xu
2020-06-05 9:25 ` Thomas Huth
2020-06-05 13:27 ` Coiby Xu
2020-06-11 12:37 ` Stefano Garzarella [this message]
2020-06-14 18:46 ` [PATCH v8 0/4] vhost-user block device backend implementation Coiby Xu
2020-06-15 8:46 ` Stefano Garzarella
2020-06-16 6:55 ` Coiby Xu
2020-06-11 15:27 ` Stefan Hajnoczi
2020-06-12 15:58 ` Coiby Xu
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=20200611123703.jpokj4m75woxt55f@steredhat \
--to=sgarzare@redhat.com \
--cc=bharatlkmlkvm@gmail.com \
--cc=coiby.xu@gmail.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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 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).