From: Markus Armbruster Date: Tue, 20 Jul 2021 12:54:08 +0000 (+0200) Subject: vl: Don't continue after -smp help. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e61a13af3d3a1942a1ec2f6dfd7b407a43e4273;p=qemu.git vl: Don't continue after -smp help. We continue after -smp help: $ qemu-system-x86_64 -smp help -display none -monitor stdio smp-opts options: cores= cpus= dies= maxcpus= sockets= threads= QEMU 6.0.50 monitor - type 'help' for more information (qemu) Other options, such as -object help and -device help, don't. Adjust -smp not to continue either. Cc: Paolo Bonzini Signed-off-by: Markus Armbruster Message-Id: <20210720125408.387910-17-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Pankaj Gupta Acked-by: Michael S. Tsirkin --- diff --git a/softmmu/vl.c b/softmmu/vl.c index f815acccaa..4dee472c79 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -1545,7 +1545,7 @@ machine_parse_property_opt(QemuOptsList *opts_list, const char *propname, prop = keyval_parse(arg, opts_list->implied_opt_name, &help, errp); if (help) { qemu_opts_print_help(opts_list, true); - return; + exit(0); } opts = qdict_new(); qdict_put(opts, propname, prop);