From: Peter Krempa Date: Mon, 19 Feb 2024 13:18:19 +0000 (+0100) Subject: qemuMigrationDstPrepareStorage: Annotate that existance of 'volume' disks is checked... X-Git-Tag: v10.1.0-rc1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=737e3daf5ac1dd5dc4b391b9a1a92c8c8ad704a3;p=thirdparty%2Flibvirt.git qemuMigrationDstPrepareStorage: Annotate that existance of 'volume' disks is checked elswhere Signed-off-by: Peter Krempa Reviewed-by: Michal Privoznik --- diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c index 438aa4503e..1faab5dd23 100644 --- a/src/qemu/qemu_migration.c +++ b/src/qemu/qemu_migration.c @@ -502,6 +502,9 @@ qemuMigrationDstPrepareStorage(virDomainObj *vm, return -1; case VIR_STORAGE_TYPE_VOLUME: + /* Existance of 'volume' type disks are handled when pre-creating them */ + break; + case VIR_STORAGE_TYPE_LAST: case VIR_STORAGE_TYPE_NONE: break;