From 479b5998d4149bef94a5900291b51804eff39a3d Mon Sep 17 00:00:00 2001 From: Vladimir Sementsov-Ogievskiy Date: Wed, 8 Jun 2016 12:39:17 +0300 Subject: [PATCH] hmp: acquire aio_context in hmp_qemu_io Acquire aio context before run command, this is mandatory for unit tests. Signed-off-by: Vladimir Sementsov-Ogievskiy Signed-off-by: Denis V. Lunev CC: Kevin Wolf CC: Paolo Bonzini Signed-off-by: Kevin Wolf --- hmp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hmp.c b/hmp.c index 4b8e9878b1..30897af6ae 100644 --- a/hmp.c +++ b/hmp.c @@ -1955,7 +1955,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); -- GitLab