All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xl: fix ballooning
@ 2010-10-27 13:46 Andre Przywara
  2010-10-27 13:54 ` Gianni Tedesco
  0 siblings, 1 reply; 4+ messages in thread
From: Andre Przywara @ 2010-10-27 13:46 UTC (permalink / raw)
  To: Keir Fraser, Stefano Stabellini; +Cc: xen-devel

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

Hi,

we should only check the value of new_target_memkb _after_ it has
been properly setup. This fixes ballooning Dom0, which
was broken since 22200:49a3c1721734.

Signed-off-by: Andre Przywara <andre.przywara@amd.com>

-- 
Andre Przywara
AMD-Operating System Research Center (OSRC), Dresden, Germany
Tel: +49 351 448-3567-12

[-- Attachment #2: fix_xl_ballooning.patch --]
[-- Type: text/x-patch, Size: 877 bytes --]

diff -r cd193fa265b8 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c	Tue Oct 26 12:22:52 2010 +0100
+++ b/tools/libxl/libxl.c	Wed Oct 27 13:47:05 2010 +0200
@@ -2927,6 +2927,11 @@
         abort = 1;
         goto out;
     }
+    if (relative)
+        new_target_memkb = current_target_memkb + target_memkb;
+    else
+        new_target_memkb = target_memkb;
+
     if (!domid && new_target_memkb < LIBXL_MIN_DOM0_MEM) {
         LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
                 "new target for dom0 is below the minimum threshold\n");
@@ -2934,10 +2939,6 @@
         goto out;
     }
 
-    if (relative)
-        new_target_memkb = current_target_memkb + target_memkb;
-    else
-        new_target_memkb = target_memkb;
     if (new_target_memkb > memorykb) {
         LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
                 "memory_dynamic_max must be less than or equal to"

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-10-28 10:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-27 13:46 [PATCH] xl: fix ballooning Andre Przywara
2010-10-27 13:54 ` Gianni Tedesco
2010-10-28  9:21   ` Andre Przywara
2010-10-28 10:15     ` Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.