From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Cc: Wei Kong <WKong.APAC-3.APAC@novell.com>,
Kevin Wolf <KWolf.EMEA5-1.EMEA5@novell.com>,
Jim Fehlig <JFEHLIG.PRV-5.PROVO@novell.com>
Subject: Re: [Qemu-devel] [PATCH] qemu_aio_poll optimize
Date: Fri, 12 Sep 2008 08:52:17 -0500 [thread overview]
Message-ID: <48CA7411.2020609@codemonkey.ws> (raw)
In-Reply-To: <48CACD2D0200006D0000249A@victor.provo.novell.com>
Wei Kong wrote:
> qemu_aio_poll() exhaust 50% cpu utilization rate in whole qemu running,
> due to it scan RawAIOCB chain list loop and loop, especially when
> these RawAIOCB are still in EINPROGRESS at IO flood.
>
Have you tested this with the very latest QEMU SVN? The recent change
(yesterday) makes it so that qemu_aio_poll is not called in every CPU
iteration.
Regards,
Anthony Liguori
> This tune will reduce 2.2% ~ 2.5% total cpu utilization rate,
> qemu_aio_poll() will exhaust 5% cpu in whole qemu running
> and a little increase the IO through.
>
> Signed-off-by: Wei Kong <wkong@novell.com>
> ---
>
> --- a/block-raw-posix.c
> +++ b/block-raw-posix.c
> @@ -289,40 +289,36 @@ void qemu_aio_poll(void)
> RawAIOCB *acb, **pacb;
> int ret;
>
> + pacb = &first_aio;
> for(;;) {
> - pacb = &first_aio;
> - for(;;) {
> - acb = *pacb;
> - if (!acb)
> - goto the_end;
> - ret = aio_error(&acb->aiocb);
> - if (ret == ECANCELED) {
> - /* remove the request */
> - *pacb = acb->next;
> - qemu_aio_release(acb);
> - } else if (ret != EINPROGRESS) {
> - /* end of aio */
> - if (ret == 0) {
> - ret = aio_return(&acb->aiocb);
> - if (ret == acb->aiocb.aio_nbytes)
> - ret = 0;
> - else
> - ret = -EINVAL;
> - } else {
> - ret = -ret;
> - }
> - /* remove the request */
> - *pacb = acb->next;
> - /* call the callback */
> - acb->common.cb(acb->common.opaque, ret);
> - qemu_aio_release(acb);
> - break;
> + acb = *pacb;
> + if (!acb)
> + break;
> + ret = aio_error(&acb->aiocb);
> + if (ret == EINPROGRESS) {
> + break;
> + } else if (ret != ECANCELED) {
> + /* end of aio */
> + if (ret == 0) {
> + ret = aio_return(&acb->aiocb);
> + if (ret == acb->aiocb.aio_nbytes)
> + ret = 0;
> + else
> + ret = -EINVAL;
> } else {
> - pacb = &acb->next;
> + ret = -ret;
> }
> - }
> + /* remove the request */
> + *pacb = acb->next;
> + /* call the callback */
> + acb->common.cb(acb->common.opaque, ret);
> + qemu_aio_release(acb);
> + } else {
> + /* remove the request */
> + *pacb = acb->next;
> + qemu_aio_release(acb);
> + }
> }
> - the_end: ;
> }
>
> /* Wait for all IO requests to complete. */
>
>
>
prev parent reply other threads:[~2008-09-12 13:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-12 10:12 [Qemu-devel] [PATCH] qemu_aio_poll optimize Wei Kong
2008-09-12 13:52 ` Anthony Liguori [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=48CA7411.2020609@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=JFEHLIG.PRV-5.PROVO@novell.com \
--cc=KWolf.EMEA5-1.EMEA5@novell.com \
--cc=WKong.APAC-3.APAC@novell.com \
--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 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).