Commit-ID: 730871f718803ae7faee0d99f1d40dc77f3db65d Gitweb: http://git.kernel.org/tip/730871f718803ae7faee0d99f1d40dc77f3db65d Author: Asias He <asias.hejun@xxxxxxxxx> AuthorDate: Mon, 8 Aug 2011 08:58:11 +0800 Committer: Pekka Enberg <penberg@xxxxxxxxxx> CommitDate: Tue, 9 Aug 2011 16:51:06 +0300 kvm tools: Sort options of kvm run command This patch sort options of kvm run command to make it look tidier and cleaner. Signed-off-by: Asias He <asias.hejun@xxxxxxxxx> Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> --- 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 dca4526..87ed715 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", -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |