]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
vl: Set error location when parsing memory options
authorEduardo Habkost <ehabkost@redhat.com>
Fri, 12 Feb 2016 19:02:27 +0000 (17:02 -0200)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 19 Feb 2016 12:46:44 +0000 (13:46 +0100)
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>
vl.c

diff --git a/vl.c b/vl.c
index bf0ef90cf9cd84b02c65dc6dd93631d20c59b966..8c1a1ffbc54b3dd0e1563afba86a7c3a4f9b21a3 100644 (file)
--- a/vl.c
+++ b/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)