From: Peter Krempa Date: Mon, 20 Jan 2020 12:02:58 +0000 (+0100) Subject: qemu: block: Don't skip creation of 'luks' formatted images X-Git-Tag: v6.1.0-rc1~443 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4e7c792d58cbd7318fc30519c551e4fe0cd98de;p=thirdparty%2Flibvirt.git qemu: block: Don't skip creation of 'luks' formatted images libvirt treats 'luks' images as raw+encryption. The logic in qemuBlockStorageSourceCreateFormat skipped the creation if the requested image was raw but didn't take into account the encryption. This manifested itself e.g. when attempting to do a virsh blockcopy with the following XML: Where qemu would report the following error: unable to execute QEMU command 'blockdev-add': Volume is not in LUKS format rather than actually formatting the image first. Signed-off-by: Peter Krempa Reviewed-by: Eric Blake --- diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c index eab21bc107..22f03da485 100644 --- a/src/qemu/qemu_block.c +++ b/src/qemu/qemu_block.c @@ -2479,7 +2479,8 @@ qemuBlockStorageSourceCreateFormat(virDomainObjPtr vm, g_autoptr(virJSONValue) createformatprops = NULL; int ret; - if (src->format == VIR_STORAGE_FILE_RAW) + if (src->format == VIR_STORAGE_FILE_RAW && + !src->encryption) return 0; if (qemuBlockStorageSourceCreateGetFormatProps(src, backingStore,