mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
vl: Set error location when parsing memory options
Set error location so the error_report() calls will show appropriate command-line argument or config file info. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <1455303747-19776-5-git-send-email-ehabkost@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
890ad5508e
commit
bbe2d25c8f
6
vl.c
6
vl.c
@ -2863,6 +2863,10 @@ static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
|
||||
const char *maxmem_str, *slots_str;
|
||||
const ram_addr_t default_ram_size = mc->default_ram_size;
|
||||
QemuOpts *opts = qemu_find_opts_singleton("memory");
|
||||
Location loc;
|
||||
|
||||
loc_push_none(&loc);
|
||||
qemu_opts_loc_restore(opts);
|
||||
|
||||
sz = 0;
|
||||
mem_str = qemu_opt_get(opts, "size");
|
||||
@ -2937,6 +2941,8 @@ static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
|
||||
"'%s' option", slots_str ? "maxmem" : "slots");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
loc_pop(&loc);
|
||||
}
|
||||
|
||||
int main(int argc, char **argv, char **envp)
|
||||
|
Loading…
Reference in New Issue
Block a user