qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	"Denis V. Lunev" <den@openvz.org>
Subject: [Qemu-devel] [PULL 7/7] blockdev: acquire AioContext in hmp_commit()
Date: Fri,  6 Nov 2015 17:52:29 +0000	[thread overview]
Message-ID: <1446832349-14952-8-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1446832349-14952-1-git-send-email-stefanha@redhat.com>

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>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Jeff Cody <jcody@redhat.com>
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 8b8bfa9..97be42f 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.5.0

  parent reply	other threads:[~2015-11-06 17:52 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-06 17:52 [Qemu-devel] [PULL 0/7] Block patches Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 1/7] dataplane: simplify indirect descriptor read Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 2/7] dataplane: support non-contigious s/g Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 3/7] aio: Introduce aio_external_disabled Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 4/7] aio: Introduce aio_context_setup Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 5/7] aio: Introduce aio-epoll.c Stefan Hajnoczi
2015-11-06 17:52 ` [Qemu-devel] [PULL 6/7] monitor: add missed aio_context_acquire into vm_completion call Stefan Hajnoczi
2015-11-06 17:52 ` Stefan Hajnoczi [this message]
2015-11-06 18:07 ` [Qemu-devel] [PULL 0/7] Block patches Peter Maydell
2015-11-09  2:00   ` Fam Zheng
2015-11-09  7:35     ` Markus Armbruster
2015-11-09 10:01       ` 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=1446832349-14952-8-git-send-email-stefanha@redhat.com \
    --to=stefanha@redhat.com \
    --cc=den@openvz.org \
    --cc=peter.maydell@linaro.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 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).