From: Kevin Wolf <kwolf@redhat.com>
To: Ming Lei <ming.lei@canonical.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
Fam Zheng <famz@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 1/3] block: block: introduce bdrv_io_plug() and bdrv_io_unplug()
Date: Tue, 1 Jul 2014 17:21:30 +0200 [thread overview]
Message-ID: <20140701152130.GK4587@noname.str.redhat.com> (raw)
In-Reply-To: <CACVXFVMuZfC0g+FPBC2GwueSUQc2RF3NGHuFig3uZhGX4peJdQ@mail.gmail.com>
Am 01.07.2014 um 16:39 hat Ming Lei geschrieben:
> On Tue, Jul 1, 2014 at 9:31 PM, Ming Lei <ming.lei@canonical.com> wrote:
> > On Tue, Jul 1, 2014 at 7:18 PM, Kevin Wolf <kwolf@redhat.com> wrote:
> >> Am 01.07.2014 um 09:51 hat Ming Lei geschrieben:
> >>> This patch introduces these two APIs so that following
> >>> patches can support queuing I/O requests and submitting them
> >>> at batch for improving I/O performance.
> >>>
> >>> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
> >>> Signed-off-by: Ming Lei <ming.lei@canonical.com>
> >>> ---
> >>> block.c | 21 +++++++++++++++++++++
> >>> include/block/block.h | 3 +++
> >>> include/block/block_int.h | 4 ++++
> >>> 3 files changed, 28 insertions(+)
> >>>
> >>> diff --git a/block.c b/block.c
> >>> index 217f523..fea9e43 100644
> >>> --- a/block.c
> >>> +++ b/block.c
> >>> @@ -1910,6 +1910,7 @@ void bdrv_drain_all(void)
> >>> bool bs_busy;
> >>>
> >>> aio_context_acquire(aio_context);
> >>> + bdrv_io_unplug(bs);
> >>> bdrv_start_throttled_reqs(bs);
> >>> bs_busy = bdrv_requests_pending(bs);
> >>> bs_busy |= aio_poll(aio_context, bs_busy);
> >>
> >> This means that bdrv_io_plug/unplug() are not paired as I would have
>
> Maybe new interface of bdrv_io_flush() or bdrv_io_commit() is better
> for the above situation.
>
> >> expected. I find the name not very descriptive anyway (I probably
> >> wouldn't have guessed what it does from its name if it weren't in this
> >> series), so maybe we should consider renaming it?
> >>
> >> Perhaps something like bdrv_req_batch_start() and
> >> bdrv_req_batch_submit(), but I'm open for different suggestions.
> >
> > The term of plug/unplug have been used in block subsystem of
> > linux kernel for long time, just like pipe with faucet, :-)
Fair enough. I don't think it's obvious when you don't know the kernel
code, but consistency might be more important.
> >>> @@ -5774,3 +5775,23 @@ bool bdrv_is_first_non_filter(BlockDriverState *candidate)
> >>>
> >>> return false;
> >>> }
> >>> +
> >>> +void bdrv_io_plug(BlockDriverState *bs)
> >>> +{
> >>> + BlockDriver *drv = bs->drv;
> >>> + if (drv && drv->bdrv_io_plug) {
> >>> + drv->bdrv_io_plug(bs);
> >>> + } else if (bs->file) {
> >>> + bdrv_io_plug(bs->file);
> >>> + }
> >>> +}
> >>
> >> Does this bs->file forwarding work for more than the raw driver? For
> >> example, if drv is an image format driver that needs to read some
> >> metadata from the image before it can submit the payload, does this
> >> still do what you were intending?
>
> Sorry for not understanding the problem, and you are right, these
> patches can't support other formats, and for solving the dependency,
> changes to image format driver should be needed.
Then let's drop the bs->file recursion here and add an explicit
.bdrv_io_plug/unplug callback to the raw driver.
Kevin
next prev parent reply other threads:[~2014-07-01 15:21 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-01 7:51 [Qemu-devel] [PATCH v2 0/3] linux-aio: introduce submit I/O at batch Ming Lei
2014-07-01 7:51 ` [Qemu-devel] [PATCH v2 1/3] block: block: introduce bdrv_io_plug() and bdrv_io_unplug() Ming Lei
2014-07-01 11:18 ` Kevin Wolf
2014-07-01 13:31 ` Ming Lei
2014-07-01 14:39 ` Ming Lei
2014-07-01 15:21 ` Kevin Wolf [this message]
2014-07-01 16:56 ` Paolo Bonzini
2014-07-02 0:46 ` Ming Lei
2014-07-02 2:35 ` Ming Lei
2014-07-02 8:18 ` Paolo Bonzini
2014-07-02 8:38 ` Kevin Wolf
2014-07-02 8:49 ` Paolo Bonzini
2014-07-02 8:39 ` Ming Lei
2014-07-02 8:56 ` Paolo Bonzini
2014-07-02 9:12 ` Kevin Wolf
2014-07-02 9:29 ` Ming Lei
2014-07-02 9:49 ` Kevin Wolf
2014-07-02 10:02 ` Ming Lei
2014-07-02 10:24 ` Paolo Bonzini
2014-07-02 10:28 ` Ming Lei
2014-07-02 9:26 ` Ming Lei
2014-07-01 7:51 ` [Qemu-devel] [PATCH v2 2/3] linux-aio: implement io plug and unplug Ming Lei
2014-07-01 7:51 ` [Qemu-devel] [PATCH v2 3/3] dataplane: submit I/O at batch Ming Lei
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=20140701152130.GK4587@noname.str.redhat.com \
--to=kwolf@redhat.com \
--cc=famz@redhat.com \
--cc=ming.lei@canonical.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--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).