]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: parse: Use qemuParseCommandLineMem for -m memory
authorNishith Shah <nishithshah.2211@gmail.com>
Fri, 20 May 2016 07:09:02 +0000 (07:09 +0000)
committerCole Robinson <crobinso@redhat.com>
Fri, 20 May 2016 12:46:39 +0000 (08:46 -0400)
Move the parsing of -m memory to a new function, qemuParseCommandLineMem

Signed-off-by: Nishith Shah <nishithshah.2211@gmail.com>
src/qemu/qemu_parse_command.c

index e30586f74b5c81e5565f1cc085bfdbd85a01d671..d0a9dc0dccf9fde2c28f77c3968cec147d96e1e2 100644 (file)
@@ -1632,6 +1632,26 @@ qemuParseCommandLineCPU(virDomainDefPtr dom,
 }
 
 
+static int
+qemuParseCommandLineMem(virDomainDefPtr dom,
+                        const char *val)
+{
+    unsigned long long mem;
+    char *end;
+
+    if (virStrToLong_ull(val, &end, 10, &mem) < 0) {
+        virReportError(VIR_ERR_INTERNAL_ERROR,
+                       _("cannot parse memory level '%s'"), val);
+        return -1;
+    }
+
+    virDomainDefSetMemoryTotal(dom, mem * 1024);
+    dom->mem.cur_balloon = mem * 1024;
+
+    return 0;
+}
+
+
 static int
 qemuParseCommandLineSmp(virDomainDefPtr dom,
                         const char *val)
@@ -1869,15 +1889,9 @@ qemuParseCommandLine(virCapsPtr caps,
         } else if (STREQ(arg, "-sdl")) {
             have_sdl = true;
         } else if (STREQ(arg, "-m")) {
-            int mem;
             WANT_VALUE();
-            if (virStrToLong_i(val, NULL, 10, &mem) < 0) {
-                virReportError(VIR_ERR_INTERNAL_ERROR, \
-                               _("cannot parse memory level '%s'"), val);
+            if (qemuParseCommandLineMem(def, val) < 0)
                 goto error;
-            }
-            virDomainDefSetMemoryTotal(def, mem * 1024);
-            def->mem.cur_balloon = mem * 1024;
         } else if (STREQ(arg, "-smp")) {
             WANT_VALUE();
             if (qemuParseCommandLineSmp(def, val) < 0)