diff --git a/hmp.c b/hmp.c index 4b8e9878b17c45f4ce1fbb26e3cc6c5b1d17b0a4..30897af6ae144abd9b5d4e837a9127fe42389a4a 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);