]> git.proxmox.com Git - mirror_qemu.git/commitdiff
vl: Don't continue after -smp help.
authorMarkus Armbruster <armbru@redhat.com>
Tue, 20 Jul 2021 12:54:08 +0000 (14:54 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 27 Jul 2021 14:52:37 +0000 (16:52 +0200)
We continue after -smp help:

    $ qemu-system-x86_64 -smp help -display none -monitor stdio
    smp-opts options:
      cores=<num>
      cpus=<num>
      dies=<num>
      maxcpus=<num>
      sockets=<num>
      threads=<num>
    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 <pbonzini@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210720125408.387910-17-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Pankaj Gupta <pankaj.gupta@ionos.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
softmmu/vl.c

index f815acccaae0ec056cd9145ff58cc47ed537551b..4dee472c7942ed3092da8d4b978021d40e18c85e 100644 (file)
@@ -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);