linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Shaohua Li <shaohua.li@intel.com>
To: Jeff Moyer <jmoyer@redhat.com>
Cc: "i@coly.li" <i@coly.li>, Zhu Yanhai <zhu.yanhai@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"bcrl@kvack.org" <bcrl@kvack.org>,
	 "viro@zeniv.linux.org.uk" <viro@zeniv.linux.org.uk>,
	"linux-aio@kvack.org" <linux-aio@kvack.org>,
	"linux-fsdevel@vger.kernel.org" <linux-fsdevel@vger.kernel.org>,
	"jaxboe@fusionio.com" <jaxboe@fusionio.com>,
	 Zhu Yanhai <gaoyang.zyh@taobao.com>
Subject: Re: [PATCH][RFC] A readahead complete notify approach to implement buffer aio
Date: Fri, 04 Nov 2011 10:59:19 +0800	[thread overview]
Message-ID: <1320375559.22361.199.camel@sli10-conroe> (raw)
In-Reply-To: <x49y5vxytik.fsf@segfault.boston.devel.redhat.com>

On Fri, 2011-11-04 at 02:01 +0800, Jeff Moyer wrote:
> Coly Li <i@coly.li> writes:
> 
> > On 2011年11月01日 17:00, Zhu Yanhai Wrote:
> >> The current libaio/aio has to be Direct-IO, otherwise it falls back into sync IO.
> >> However, the aio core has already been asychronous naturally. This patch adds a complete
> >> notify mechanism to implement buffer aio, the main idea is to readahead()-like in
> >> io_submit(), counts the non-uptodated pages assocaiated with each iocb, then put each ref
> >> in the bio complete path just before unlock_page(), and hook them on to the aio ring buffer
> >> finally when the ref drops to zero. In io_getevents(), we call vfs_read() as a safe net
> >> since there is still little possibility that the pages had brought in were reclaimed
> >> between io_submit() and io_getevents().
> >> 
> >> I have tested this patch for a while, for the small size random io request, its
> >> performance is more or less the same with the traditional aio, for the big io request,
> >> the overhead of one extra memory copy arises.
> >> 
> >> I think so far it has at least below obvious drawbacks,
> >> 
> >> * mpage_readpage() is a really narrow interface, I have no way to pass down
> >> the new control struct baiocb, so I just put it into struct task_struct and
> >> refer it by current() as a workaround.
> >> 
> >> * the do_baio_read() routine is heavily similar with do_generic_file_read(), but
> >> the latter is really hard to modify. I think we may stuff these code down into the
> >> readahead path to reduce code reduplication.
> >> 
> >> Hopefully the explanations are clear enough and don't muddy the water any worse.
> >> I figure the code does need some better comments, and any suggestion are welcome.
> >> 
> >> Signed-off-by: Zhu Yanhai <gaoyang.zyh@taobao.com>
> >> 
> >> ---
> >>  fs/aio.c                    |  319 ++++++++++++++++++++++++++++++++++++++++++-
> >>  fs/buffer.c                 |   26 ++++-
> >>  fs/mpage.c                  |   28 ++++-
> >>  include/linux/aio.h         |    9 ++
> >>  include/linux/aio_abi.h     |    1 +
> >>  include/linux/blk_types.h   |    2 +
> >>  include/linux/buffer_head.h |    3 +
> >>  include/linux/page-flags.h  |    2 +
> >>  include/linux/sched.h       |    1 +
> >>  9 files changed, 386 insertions(+), 5 deletions(-)
> >> 
> >
> > Hmm, I don't see the usage from user space. Is it possible to post a demo code in user space, so people are able to
> > understand how to use/test your patch.
> 
> He added a new IOCB_CMD_blah for buffered aio reads.  That is,
> unfortunately, a really poor way to go about doing things.  Please take
> a look at the work Jens did on implementing buffered aio.  It can be
> found in his linux-block git tree.
Interesting, I thought Jens's work is to make io_submit not blocking.
That's good to know it supports async buffer io too. Last time I look at
the code, it appears there still are threads to do the aio retry, so
what's the difference just letting user space thread do a sync buffer
io?

--
To unsubscribe, send a message with 'unsubscribe linux-aio' in
the body to majordomo@kvack.org.  For more info on Linux AIO,
see: http://www.kvack.org/aio/
Don't email: <a href=mailto:"aart@kvack.org">aart@kvack.org</a>

      reply	other threads:[~2011-11-04  2:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-01  9:00 [PATCH][RFC] A readahead complete notify approach to implement buffer aio Zhu Yanhai
2011-11-03 18:09 ` Coly Li
2011-11-03 18:01   ` Jeff Moyer
2011-11-04  2:59     ` Shaohua Li [this message]

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=1320375559.22361.199.camel@sli10-conroe \
    --to=shaohua.li@intel.com \
    --cc=bcrl@kvack.org \
    --cc=gaoyang.zyh@taobao.com \
    --cc=i@coly.li \
    --cc=jaxboe@fusionio.com \
    --cc=jmoyer@redhat.com \
    --cc=linux-aio@kvack.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    --cc=zhu.yanhai@gmail.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).