From: Paolo Bonzini <pbonzini@redhat.com>
To: kvm@vger.kernel.org
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v8 1/4] block: add the block queue support
Date: Mon, 17 Oct 2011 12:17:54 +0200 [thread overview]
Message-ID: <4E9C00D2.1040004@redhat.com> (raw)
In-Reply-To: <4E9C00CB.8080003@redhat.com>
On 10/17/2011 12:17 PM, Kevin Wolf wrote:
> > > > +
> > > > +static int qemu_block_queue_handler(BlockQueueAIOCB *request)
> > > > +{
> > > > + int ret;
> > > > + BlockDriverAIOCB *res;
> > > > +
> > > > + res = request->handler(request->common.bs, request->sector_num,
> > > > + request->qiov, request->nb_sectors,
> > > > + qemu_block_queue_callback, request);
> > > > + if (res) {
> > > > + request->real_acb = res;
> > > > + }
> > > > +
> > > > + ret = (res == NULL) ? 0 : 1;
> > > > +
> > > > + return ret;
> > >
> > > You mean return (res != NULL); and want to have bool as the return value
> > > of this function.
> >
> > Yeah, thanks. i will modify as below:
> > ret = (res == NULL) ? false : true;
>
> ret = (res != NULL) is really more readable.
"return (res != NULL);" is even nicer! :)
Paolo
next prev parent reply other threads:[~2011-10-17 10:18 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-08 10:11 [PATCH v8 0/4] The intro of QEMU block I/O throttling Zhi Yong Wu
2011-09-08 10:11 ` [Qemu-devel] " Zhi Yong Wu
2011-09-08 10:11 ` [PATCH v8 1/4] block: add the block queue support Zhi Yong Wu
2011-09-08 10:11 ` [Qemu-devel] " Zhi Yong Wu
2011-09-23 15:32 ` Kevin Wolf
2011-09-23 15:32 ` [Qemu-devel] " Kevin Wolf
2011-09-26 8:01 ` Zhi Yong Wu
2011-09-26 8:01 ` Zhi Yong Wu
2011-10-17 10:17 ` Kevin Wolf
2011-10-17 10:17 ` Kevin Wolf
2011-10-17 10:17 ` Paolo Bonzini [this message]
2011-10-18 7:00 ` Zhi Yong Wu
2011-10-18 7:00 ` Zhi Yong Wu
2011-10-18 8:07 ` Zhi Yong Wu
2011-10-18 8:07 ` [Qemu-devel] " Zhi Yong Wu
2011-10-18 8:36 ` Kevin Wolf
2011-10-18 8:36 ` Kevin Wolf
2011-10-18 9:29 ` Zhi Yong Wu
2011-10-18 9:29 ` Zhi Yong Wu
2011-10-18 9:56 ` Kevin Wolf
2011-10-18 9:56 ` Kevin Wolf
2011-10-18 13:29 ` Zhi Yong Wu
2011-10-18 13:29 ` Zhi Yong Wu
2011-09-08 10:11 ` [PATCH v8 2/4] block: add the command line support Zhi Yong Wu
2011-09-08 10:11 ` [Qemu-devel] " Zhi Yong Wu
2011-09-23 15:54 ` Kevin Wolf
2011-09-23 15:54 ` [Qemu-devel] " Kevin Wolf
2011-09-26 6:15 ` Zhi Yong Wu
2011-09-26 6:15 ` [Qemu-devel] " Zhi Yong Wu
2011-10-17 10:19 ` Kevin Wolf
2011-10-17 10:19 ` Kevin Wolf
2011-10-18 8:17 ` Zhi Yong Wu
2011-10-18 8:17 ` [Qemu-devel] " Zhi Yong Wu
2011-09-08 10:11 ` [PATCH v8 3/4] block: add block timer and throttling algorithm Zhi Yong Wu
2011-09-08 10:11 ` [Qemu-devel] " Zhi Yong Wu
2011-09-09 14:44 ` Marcelo Tosatti
2011-09-09 14:44 ` [Qemu-devel] " Marcelo Tosatti
2011-09-13 3:09 ` Zhi Yong Wu
2011-09-13 3:09 ` [Qemu-devel] " Zhi Yong Wu
2011-09-14 10:50 ` Marcelo Tosatti
2011-09-14 10:50 ` [Qemu-devel] " Marcelo Tosatti
2011-09-19 9:55 ` Zhi Yong Wu
2011-09-19 9:55 ` [Qemu-devel] " Zhi Yong Wu
2011-09-20 12:34 ` Marcelo Tosatti
2011-09-20 12:34 ` [Qemu-devel] " Marcelo Tosatti
2011-09-21 3:14 ` Zhi Yong Wu
2011-09-21 3:14 ` [Qemu-devel] " Zhi Yong Wu
2011-09-21 5:54 ` Zhi Yong Wu
2011-09-21 5:54 ` [Qemu-devel] " Zhi Yong Wu
2011-09-21 7:03 ` Zhi Yong Wu
2011-09-21 7:03 ` [Qemu-devel] " Zhi Yong Wu
2011-09-26 8:15 ` Zhi Yong Wu
2011-09-26 8:15 ` [Qemu-devel] " Zhi Yong Wu
2011-09-23 16:19 ` Kevin Wolf
2011-09-23 16:19 ` [Qemu-devel] " Kevin Wolf
2011-09-26 7:24 ` Zhi Yong Wu
2011-09-26 7:24 ` [Qemu-devel] " Zhi Yong Wu
2011-10-17 10:26 ` Kevin Wolf
2011-10-17 10:26 ` Kevin Wolf
2011-10-17 15:54 ` Stefan Hajnoczi
2011-10-17 15:54 ` Stefan Hajnoczi
2011-10-18 8:29 ` Zhi Yong Wu
2011-10-18 8:29 ` Zhi Yong Wu
2011-10-18 8:43 ` Zhi Yong Wu
2011-10-18 8:43 ` Zhi Yong Wu
2011-09-08 10:11 ` [PATCH v8 4/4] qmp/hmp: add block_set_io_throttle Zhi Yong Wu
2011-09-08 10:11 ` [Qemu-devel] " Zhi Yong Wu
-- strict thread matches above, loose matches on Subject: below --
2011-09-07 12:31 [PATCH v8 0/4] The intro of QEMU block I/O throttling Zhi Yong Wu
2011-09-07 12:31 ` [Qemu-devel] [PATCH v8 1/4] block: add the block queue support Zhi Yong Wu
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=4E9C00D2.1040004@redhat.com \
--to=pbonzini@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.