Re: [Qemu-devel] [PATCH v8 16/19] block: vhdx - add .bdrv_create() support

2013-10-31 Thread Stefan Hajnoczi
On Wed, Oct 30, 2013 at 10:44:53AM -0400, Jeff Cody wrote: +if (image_size VHDX_MAX_IMAGE_SIZE) { +error_setg_errno(errp, EINVAL, Image size too large; max of 64TB\n); Error messages should not include '\n'. Perhaps this can be fixed when merging the patch.

[Qemu-devel] [PATCH v8 16/19] block: vhdx - add .bdrv_create() support

2013-10-30 Thread Jeff Cody
This adds support for VHDX image creation, for images of type Fixed and Dynamic. Differencing types (i.e., VHDX images with backing files) are currently not supported. Options for image creation include: * log size: The size of the journaling log for VHDX. Minimum is 1MB,