qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/1] hmp: acquire aio_context in hmp_qemu_io
@ 2016-06-08  9:39 Denis V. Lunev
  2016-06-08 11:23 ` Kevin Wolf
  0 siblings, 1 reply; 7+ messages in thread
From: Denis V. Lunev @ 2016-06-08  9:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: den, Vladimir Sementsov-Ogievskiy, Kevin Wolf, Paolo Bonzini

From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>

Acquire aio context before run command, this is mandatory for unit tests.

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Kevin Wolf <kwolf@redhat.com>
CC: Paolo Bonzini <pbonzini@redhat.com>
---
 hmp.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/hmp.c b/hmp.c
index a4b1d3d..36df0a7 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1951,7 +1951,12 @@ void hmp_qemu_io(Monitor *mon, const QDict *qdict)
 
     blk = blk_by_name(device);
     if (blk) {
+        AioContext *aio_context = blk_get_aio_context(blk);
+        aio_context_acquire(aio_context);
+
         qemuio_command(blk, command);
+
+        aio_context_release(aio_context);
     } else {
         error_set(&err, ERROR_CLASS_DEVICE_NOT_FOUND,
                   "Device '%s' not found", device);
-- 
2.1.4

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

end of thread, other threads:[~2016-06-15 20:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-08  9:39 [Qemu-devel] [PATCH 1/1] hmp: acquire aio_context in hmp_qemu_io Denis V. Lunev
2016-06-08 11:23 ` Kevin Wolf
2016-06-08 11:31   ` Denis V. Lunev
2016-06-14  8:34   ` Denis V. Lunev
2016-06-14  8:44     ` Kevin Wolf
2016-06-14  9:00       ` Denis V. Lunev
2016-06-15 20:31       ` Denis V. Lunev

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