Skip to content

Commit

Permalink
vl.c: Fix regression in machine error message
Browse files Browse the repository at this point in the history
Commit e1ce0c3 (vl.c: fix regression when reading machine type
from config file) fixed the error message when the machine type
was supplied inside the config file. However now the option name
is not displayed correctly if the error happens when the machine
is specified at command line.

Running
    ./x86_64-softmmu/qemu-system-x86_64 -M q35-1.5 -redir tcp:8022::22
will result in the error message:
    qemu-system-x86_64: -redir tcp:8022::22: unsupported machine type
    Use -machine help to list supported machines

Fixed it by restoring the error location and also extracted the code
dealing with machine options into a separate function.

Reported-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <1455303747-19776-2-git-send-email-ehabkost@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
(cherry picked from commit 34f405a)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
  • Loading branch information
marcel-apf authored and mdroth committed Mar 17, 2016
1 parent 4b0b1ec commit bad094d
Showing 1 changed file with 26 additions and 11 deletions.
37 changes: 26 additions & 11 deletions vl.c
Expand Up @@ -2757,6 +2757,31 @@ static const QEMUOption *lookup_opt(int argc, char **argv,
return popt;
}

static void set_machine_options(MachineClass **machine_class)
{
const char *optarg;
QemuOpts *opts;
Location loc;

loc_push_none(&loc);

opts = qemu_get_machine_opts();
qemu_opts_loc_restore(opts);

optarg = qemu_opt_get(opts, "type");
if (optarg) {
*machine_class = machine_parse(optarg);
}

if (*machine_class == NULL) {
error_report("No machine specified, and there is no default");
error_printf("Use -machine help to list supported machines\n");
exit(1);
}

loc_pop(&loc);
}

static int machine_set_property(void *opaque,
const char *name, const char *value,
Error **errp)
Expand Down Expand Up @@ -4025,17 +4050,7 @@ int main(int argc, char **argv, char **envp)

replay_configure(icount_opts);

opts = qemu_get_machine_opts();
optarg = qemu_opt_get(opts, "type");
if (optarg) {
machine_class = machine_parse(optarg);
}

if (machine_class == NULL) {
error_report("No machine specified, and there is no default");
error_printf("Use -machine help to list supported machines\n");
exit(1);
}
set_machine_options(&machine_class);

set_memory_options(&ram_slots, &maxram_size, machine_class);

Expand Down

0 comments on commit bad094d

Please sign in to comment.