All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeff Cody <jcody@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>, "Denis V. Lunev" <den@openvz.org>,
	qemu-devel@nongnu.org, qemu-block@nongnu.org,
	Markus Armbruster <armbru@redhat.com>
Subject: Re: [Qemu-devel] [Qemu-block] [PATCH] blockdev: acquire AioContext in hmp_commit()
Date: Fri, 30 Oct 2015 12:01:59 -0400	[thread overview]
Message-ID: <20151030160159.GA23286@localhost.localdomain> (raw)
In-Reply-To: <1446220661-18792-1-git-send-email-stefanha@redhat.com>

On Fri, Oct 30, 2015 at 03:57:41PM +0000, Stefan Hajnoczi wrote:
> This one slipped through.  Although we acquire AioContext when
> committing all devices we don't for just a single device.
> 
> AioContext must be acquired before calling bdrv_*() functions to
> synchronize access with other threads that may be using the AioContext.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
>  blockdev.c | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/blockdev.c b/blockdev.c
> index 18712d2..d611779 100644
> --- a/blockdev.c
> +++ b/blockdev.c
> @@ -1120,6 +1120,9 @@ void hmp_commit(Monitor *mon, const QDict *qdict)
>      if (!strcmp(device, "all")) {
>          ret = bdrv_commit_all();
>      } else {
> +        BlockDriverState *bs;
> +        AioContext *aio_context;
> +
>          blk = blk_by_name(device);
>          if (!blk) {
>              monitor_printf(mon, "Device '%s' not found\n", device);
> @@ -1129,7 +1132,14 @@ void hmp_commit(Monitor *mon, const QDict *qdict)
>              monitor_printf(mon, "Device '%s' has no medium\n", device);
>              return;
>          }
> -        ret = bdrv_commit(blk_bs(blk));
> +
> +        bs = blk_bs(blk);
> +        aio_context = bdrv_get_aio_context(bs);
> +        aio_context_acquire(aio_context);
> +
> +        ret = bdrv_commit(bs);
> +
> +        aio_context_release(aio_context);
>      }
>      if (ret < 0) {
>          monitor_printf(mon, "'commit' error for '%s': %s\n", device,
> -- 
> 2.4.3
> 
> 

Reviewed-by: Jeff Cody <jcody@redhat.com>

  reply	other threads:[~2015-10-30 16:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-30 15:57 [Qemu-devel] [PATCH] blockdev: acquire AioContext in hmp_commit() Stefan Hajnoczi
2015-10-30 16:01 ` Jeff Cody [this message]
2015-11-01 17:50 ` Denis V. Lunev
2015-11-02 13:29   ` 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=20151030160159.GA23286@localhost.localdomain \
    --to=jcody@redhat.com \
    --cc=armbru@redhat.com \
    --cc=den@openvz.org \
    --cc=kwolf@redhat.com \
    --cc=qemu-block@nongnu.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 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.