qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] blockdev: acquire AioContext in hmp_commit()
@ 2015-10-30 15:57 Stefan Hajnoczi
  2015-10-30 16:01 ` [Qemu-devel] [Qemu-block] " Jeff Cody
  2015-11-01 17:50 ` [Qemu-devel] " Denis V. Lunev
  0 siblings, 2 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2015-10-30 15:57 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Denis V. Lunev, Stefan Hajnoczi, Markus Armbruster,
	qemu-block

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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-02 13:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-30 15:57 [Qemu-devel] [PATCH] blockdev: acquire AioContext in hmp_commit() Stefan Hajnoczi
2015-10-30 16:01 ` [Qemu-devel] [Qemu-block] " Jeff Cody
2015-11-01 17:50 ` [Qemu-devel] " Denis V. Lunev
2015-11-02 13:29   ` Stefan Hajnoczi

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).