]> xenbits.xensource.com Git - libvirt.git/commitdiff
Make virsh setmaxmem balloon only when successful.
authorChris Lalancette <clalance@redhat.com>
Tue, 30 Mar 2010 13:03:26 +0000 (09:03 -0400)
committerChris Lalancette <clalance@redhat.com>
Tue, 20 Jul 2010 13:44:14 +0000 (09:44 -0400)
After playing around with virsh setmaxmem for a bit,
I ran into some surprising behavior; if a hypervisor does
not support the virDomainSetMaxMemory() API, but the value
specified for setmaxmem is less than the current amount
of memory in the domain, the domain would be ballooned
down *before* an error was reported.

To make this more consistent, run virDomainSetMaxMemory()
before trying to shrink; that way, if an error is thrown,
no changes to the running domain are made.

Signed-off-by: Chris Lalancette <clalance@redhat.com>
tools/virsh.c

index b0578470214708cad62f323393c13cac8adc6314..17c3074403100440be260bfd0d810a5a29e9696d 100644 (file)
@@ -2596,19 +2596,19 @@ cmdSetmaxmem(vshControl *ctl, const vshCmd *cmd)
         return FALSE;
     }
 
+    if (virDomainSetMaxMemory(dom, kilobytes) != 0) {
+        vshError(ctl, "%s", _("Unable to change MaxMemorySize"));
+        virDomainFree(dom);
+        return FALSE;
+    }
+
     if (kilobytes < info.memory) {
         if (virDomainSetMemory(dom, kilobytes) != 0) {
-            virDomainFree(dom);
             vshError(ctl, "%s", _("Unable to shrink current MemorySize"));
-            return FALSE;
+            ret = FALSE;
         }
     }
 
-    if (virDomainSetMaxMemory(dom, kilobytes) != 0) {
-        vshError(ctl, "%s", _("Unable to change MaxMemorySize"));
-        ret = FALSE;
-    }
-
     virDomainFree(dom);
     return ret;
 }