I think you should already know of a bug in qemu-img
that prevents it from using the -c option; the problem
is the line
if (flags & BLOCK_FLAG_COMPRESS && drv !=
&bdrv_vmdk)
in img_convert() should read
if (flags & BLOCK_FLAG_COMPAT6 && drv != &bdrv_vmdk)
That's it!
By the way, congratulatio
Hello,
I hope you can enlight me a little bit :).
I'm trying to use qemu-img to create two disk images: a base image and a
snapshot image (diff image or copy on write, name it the way you want).
I think either qemu-img has a bug if the snapshot image has type vmdk or
this format is not supported/s