From: Yongji Xie <xieyongji@bytedance.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>,
qemu-block@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>,
qemu-devel@nongnu.org, mreitz@redhat.com, mlureau@redhat.com,
Stefano Garzarella <sgarzare@redhat.com>
Subject: Re: [PATCH v2 3/6] libvduse: Add VDUSE (vDPA Device in Userspace) library
Date: Thu, 17 Mar 2022 10:15:53 +0800 [thread overview]
Message-ID: <CACycT3s-V27cCH1OXpXtYRf=sgkCWKrb9Uq_nwNbcgYe2Z5nGQ@mail.gmail.com> (raw)
In-Reply-To: <YjIHhP7WlXyZ9gJm@stefanha-x1.localdomain>
On Wed, Mar 16, 2022 at 11:51 PM Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> On Wed, Mar 16, 2022 at 09:49:19PM +0800, Yongji Xie wrote:
> > On Wed, Mar 16, 2022 at 9:28 PM Stefan Hajnoczi <stefanha@redhat.com> wrote:
> > >
> > > On Tue, Mar 15, 2022 at 07:38:12PM +0800, Yongji Xie wrote:
> > > > On Tue, Mar 15, 2022 at 5:48 PM Stefan Hajnoczi <stefanha@redhat.com> wrote:
> > > > >
> > > > > On Tue, Feb 15, 2022 at 06:59:40PM +0800, Xie Yongji wrote:
> > > > > > VDUSE [1] is a linux framework that makes it possible to implement
> > > > > > software-emulated vDPA devices in userspace. This adds a library
> > > > > > as a subproject to help implementing VDUSE backends in QEMU.
> > > > > >
> > > > > > [1] https://www.kernel.org/doc/html/latest/userspace-api/vduse.html
> > > > > >
> > > > > > Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
> > > > > > ---
> > > > > > meson.build | 15 +
> > > > > > meson_options.txt | 2 +
> > > > > > scripts/meson-buildoptions.sh | 3 +
> > > > > > subprojects/libvduse/include/atomic.h | 1 +
> > > > > > subprojects/libvduse/libvduse.c | 1152 +++++++++++++++++++
> > > > > > subprojects/libvduse/libvduse.h | 225 ++++
> > > > > > subprojects/libvduse/linux-headers/linux | 1 +
> > > > > > subprojects/libvduse/meson.build | 10 +
> > > > > > subprojects/libvduse/standard-headers/linux | 1 +
> > > > > > 9 files changed, 1410 insertions(+)
> > > > > > create mode 120000 subprojects/libvduse/include/atomic.h
> > > > > > create mode 100644 subprojects/libvduse/libvduse.c
> > > > > > create mode 100644 subprojects/libvduse/libvduse.h
> > > > > > create mode 120000 subprojects/libvduse/linux-headers/linux
> > > > > > create mode 100644 subprojects/libvduse/meson.build
> > > > > > create mode 120000 subprojects/libvduse/standard-headers/linux
> > > > >
> > > > > Please update the ./MAINTAINERS file when adding new source files.
> > > >
> > > > OK, sure. And would you mind being one of the maintainers since I'm
> > > > not sure if I can do this job well.
> > >
> > > You're welcome to become the maintainer. It means that you will be CCed
> > > on patches affecting this code and sometimes people might send you
> > > questions about VDUSE exports.
> > >
> >
> > I see. I will try my best.
> >
> > > Is the issue lack of time?
> > >
> >
> > I think the time is enough. But since I have no experience, I'm not
> > sure if I can do this well.
>
> Great! Don't worry there will probably not be much you need to do.
>
> If someone submits a patch they'll CC you and you can post your
> "Reviewed-by:". Kevin or I can pick up the patches you've reviewed and
> send them with our pull requests to the qemu.git maintainer.
>
OK, I got it. Thank you!
Thanks,
Yongji
next prev parent reply other threads:[~2022-03-17 2:17 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-15 10:59 [PATCH v2 0/6] Support exporting BDSs via VDUSE Xie Yongji
2022-02-15 10:59 ` [PATCH v2 1/6] block: Support passing NULL ops to blk_set_dev_ops() Xie Yongji
2022-03-14 17:23 ` Stefan Hajnoczi
2022-03-14 19:09 ` John Snow
2022-03-15 8:47 ` Stefan Hajnoczi
2022-03-15 19:30 ` John Snow
2022-03-16 12:18 ` Stefan Hajnoczi
2022-03-17 8:57 ` Kevin Wolf
2022-02-15 10:59 ` [PATCH v2 2/6] linux-headers: Add vduse.h Xie Yongji
2022-02-15 10:59 ` [PATCH v2 3/6] libvduse: Add VDUSE (vDPA Device in Userspace) library Xie Yongji
2022-03-15 9:48 ` Stefan Hajnoczi
2022-03-15 11:38 ` Yongji Xie
2022-03-16 13:28 ` Stefan Hajnoczi
2022-03-16 13:49 ` Yongji Xie
2022-03-16 15:51 ` Stefan Hajnoczi
2022-03-17 2:15 ` Yongji Xie [this message]
2022-02-15 10:59 ` [PATCH v2 4/6] vduse-blk: implements vduse-blk export Xie Yongji
2022-03-15 11:08 ` Stefan Hajnoczi
2022-03-15 11:52 ` Yongji Xie
2022-03-16 12:16 ` Stefan Hajnoczi
2022-03-16 13:24 ` Yongji Xie
2022-02-15 10:59 ` [PATCH v2 5/6] vduse-blk: Add vduse-blk resize support Xie Yongji
2022-03-15 13:36 ` Stefan Hajnoczi
2022-02-15 10:59 ` [PATCH v2 6/6] libvduse: Add support for reconnecting Xie Yongji
2022-03-15 13:48 ` Stefan Hajnoczi
2022-03-16 2:33 ` Yongji Xie
2022-03-09 15:37 ` [PATCH v2 0/6] Support exporting BDSs via VDUSE Stefan Hajnoczi
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='CACycT3s-V27cCH1OXpXtYRf=sgkCWKrb9Uq_nwNbcgYe2Z5nGQ@mail.gmail.com' \
--to=xieyongji@bytedance.com \
--cc=jasowang@redhat.com \
--cc=kwolf@redhat.com \
--cc=mlureau@redhat.com \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=sgarzare@redhat.com \
--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).