Revision db08adf5 block/qcow.c

b/block/qcow.c
909 909

  
910 910

  
911 911
static QEMUOptionParameter qcow_create_options[] = {
912
    { BLOCK_OPT_SIZE,           OPT_SIZE },
913
    { BLOCK_OPT_BACKING_FILE,   OPT_STRING },
914
    { BLOCK_OPT_ENCRYPT,        OPT_FLAG },
912
    {
913
        .name = BLOCK_OPT_SIZE,
914
        .type = OPT_SIZE,
915
        .help = "Virtual disk size"
916
    },
917
    {
918
        .name = BLOCK_OPT_BACKING_FILE,
919
        .type = OPT_STRING,
920
        .help = "File name of a base image"
921
    },
922
    {
923
        .name = BLOCK_OPT_ENCRYPT,
924
        .type = OPT_FLAG,
925
        .help = "Encrypt the image"
926
    },
915 927
    { NULL }
916 928
};
917 929

  

Also available in: Unified diff