]> git.proxmox.com Git - mirror_qemu.git/commitdiff
pc: fix qemu exiting with error when -m X < 128 with old machine types
authorIgor Mammedov <imammedo@redhat.com>
Tue, 8 Jul 2014 13:29:46 +0000 (15:29 +0200)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 17 Jul 2014 16:45:45 +0000 (17:45 +0100)
If machine doesn't support memory hotplug then starting QEMU
with initial memory less than default will make QEMU exit with
following error message:

$QEMU -m 16  -M isapc
qemu-system-i386: "-memory 'slots|maxmem'" is not supported by: isapc

Set maxram_size to initial memory value before parsing
'maxmem' option allows to keep maxmem in sync with initial
memory size if no maxmem option was specified.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
CC: Bruce Rogers <brogers@suse.com>
Reviewed-By: Bruce Rogers <brogers@suse.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
vl.c

diff --git a/vl.c b/vl.c
index 6e084c2da26aa95c0f6876a0629b3c3dd62fede9..6abedcfae7427682a685577cb4307cf050e681fe 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -3315,6 +3315,7 @@ int main(int argc, char **argv, char **envp)
                     error_report("ram size too large");
                     exit(EXIT_FAILURE);
                 }
+                maxram_size = ram_size;
 
                 maxmem_str = qemu_opt_get(opts, "maxmem");
                 slots_str = qemu_opt_get(opts, "slots");