]> Git Repo - qemu.git/commitdiff
vmdk: false positive of compat6 with hwversion not set
authoryuchenlin <[email protected]>
Thu, 21 Feb 2019 11:08:05 +0000 (11:08 +0000)
committerMax Reitz <[email protected]>
Mon, 25 Feb 2019 14:11:28 +0000 (15:11 +0100)
In vmdk_co_create_opts, when it finds hw_version is undefined, it will
set it to 4, which misleading the compat6 and hwversion in
vmdk_co_do_create. Simply set hw_version to NULL after free, let
the logic in vmdk_co_do_create to decide the value of hw_version.

This bug can be reproduced by:

$ qemu-img convert -O vmdk -o subformat=streamOptimized,compat6
/home/yuchenlin/syno.qcow2 /home/yuchenlin/syno.vmdk

qemu-img: /home/yuchenlin/syno.vmdk: error while converting vmdk:
compat6 cannot be enabled with hwversion set

Signed-off-by: yuchenlin <[email protected]>
Message-id: 20190221110805[email protected]
Signed-off-by: Max Reitz <[email protected]>
block/vmdk.c

index 91345babb58ee59bce7b8031ffda0f6aa1d2b4d6..f4e68aa00b43f4f0949a57083dfde7b3c74370d7 100644 (file)
@@ -2267,7 +2267,7 @@ static int coroutine_fn vmdk_co_create_opts(const char *filename, QemuOpts *opts
     compat6 = qemu_opt_get_bool_del(opts, BLOCK_OPT_COMPAT6, false);
     if (strcmp(hw_version, "undefined") == 0) {
         g_free(hw_version);
-        hw_version = g_strdup("4");
+        hw_version = NULL;
     }
     fmt = qemu_opt_get_del(opts, BLOCK_OPT_SUBFMT);
     zeroed_grain = qemu_opt_get_bool_del(opts, BLOCK_OPT_ZEROED_GRAIN, false);
This page took 0.033497 seconds and 4 git commands to generate.