X-Git-Url: http://git.maemo.org/git/?p=qemu;a=blobdiff_plain;f=block%2Fvmdk.c;fp=block%2Fvmdk.c;h=f21f02bc5249f5545ce335eb7fdc089497de1847;hp=b3ea68679c928eeeccfa52d537de4474e40d5653;hb=db08adf526ce78eea7ae5f24e30b8caa1af4cf24;hpb=f425c278724fc477735a0eecd2e2b03e53fd1a62 diff --git a/block/vmdk.c b/block/vmdk.c index b3ea686..f21f02b 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@ -828,9 +828,21 @@ static void vmdk_flush(BlockDriverState *bs) static QEMUOptionParameter vmdk_create_options[] = { - { BLOCK_OPT_SIZE, OPT_SIZE }, - { BLOCK_OPT_BACKING_FILE, OPT_STRING }, - { BLOCK_OPT_COMPAT6, OPT_FLAG }, + { + .name = BLOCK_OPT_SIZE, + .type = OPT_SIZE, + .help = "Virtual disk size" + }, + { + .name = BLOCK_OPT_BACKING_FILE, + .type = OPT_STRING, + .help = "File name of a base image" + }, + { + .name = BLOCK_OPT_COMPAT6, + .type = OPT_FLAG, + .help = "VMDK version 6 image" + }, { NULL } };