This patch sort options of kvm run command to make it look tidier and cleaner. Signed-off-by: Asias He <asias.hejun@xxxxxxxxx> --- tools/kvm/builtin-run.c | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/kvm/builtin-run.c b/tools/kvm/builtin-run.c index a4988aa..4279cb3 100644 --- a/tools/kvm/builtin-run.c +++ b/tools/kvm/builtin-run.c @@ -159,16 +159,15 @@ static const struct option options[] = { OPT_INTEGER('c', "cpus", &nrcpus, "Number of CPUs"), OPT_U64('m', "mem", &ram_size, "Virtual machine memory size in MiB."), OPT_CALLBACK('d', "disk", NULL, "image", "Disk image", img_name_parser), - OPT_STRING('\0', "console", &console, "serial or virtio", - "Console to use"), - OPT_INCR('\0', "rng", &virtio_rng, - "Enable virtio Random Number Generator"), - OPT_STRING('\0', "dev", &dev, "device_file", "KVM device file"), - OPT_CALLBACK('\0', "9p", NULL, "dir_to_share,tag_name", - "Enable virtio 9p to share files between host and guest", virtio_9p_rootdir_parser), OPT_BOOLEAN('\0', "balloon", &balloon, "Enable virtio balloon"), OPT_BOOLEAN('\0', "vnc", &vnc, "Enable VNC framebuffer"), OPT_BOOLEAN('\0', "sdl", &sdl, "Enable SDL framebuffer"), + OPT_INCR('\0', "rng", &virtio_rng, "Enable virtio Random Number Generator"), + OPT_CALLBACK('\0', "9p", NULL, "dir_to_share,tag_name", + "Enable virtio 9p to share files between host and guest", virtio_9p_rootdir_parser), + OPT_STRING('\0', "console", &console, "serial or virtio", + "Console to use"), + OPT_STRING('\0', "dev", &dev, "device_file", "KVM device file"), OPT_GROUP("Kernel options:"), OPT_STRING('k', "kernel", &kernel_filename, "kernel", -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html