All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for-4.5] libxl_set_memory_target: only remove videoram from absolute targets
@ 2014-12-03 18:20 Stefano Stabellini
  2014-12-03 20:41 ` Konrad Rzeszutek Wilk
  2014-12-03 21:46 ` Don Slutz
  0 siblings, 2 replies; 5+ messages in thread
From: Stefano Stabellini @ 2014-12-03 18:20 UTC (permalink / raw)
  To: xen-devel; +Cc: Anthony Perard, Wei Liu, dslutz, Stefano Stabellini

If the new target is relative to the current target, do not remove
videoram again: it has already been removed from the current target.

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>

diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c
index de23fec..2aa83bd 100644
--- a/tools/libxl/libxl.c
+++ b/tools/libxl/libxl.c
@@ -4741,13 +4741,17 @@ retry_transaction:
         goto out;
     }
 
+    videoram_s = libxl__xs_read(gc, t, libxl__sprintf(gc,
+                "%s/memory/videoram", dompath));
+    videoram = videoram_s ? atoi(videoram_s) : 0;
+
     if (relative) {
         if (target_memkb < 0 && abs(target_memkb) > current_target_memkb)
             new_target_memkb = 0;
         else
             new_target_memkb = current_target_memkb + target_memkb;
     } else
-        new_target_memkb = target_memkb;
+        new_target_memkb = target_memkb - videoram;
     if (new_target_memkb > memorykb) {
         LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
                 "memory_dynamic_max must be less than or equal to"
@@ -4763,9 +4767,6 @@ retry_transaction:
         abort_transaction = 1;
         goto out;
     }
-    videoram_s = libxl__xs_read(gc, t, libxl__sprintf(gc,
-                "%s/memory/videoram", dompath));
-    videoram = videoram_s ? atoi(videoram_s) : 0;
 
     if (enforce) {
         memorykb = new_target_memkb;
@@ -4780,7 +4781,6 @@ retry_transaction:
         }
     }
 
-    new_target_memkb -= videoram;
     rc = xc_domain_set_pod_target(ctx->xch, domid,
             new_target_memkb / 4, NULL, NULL, NULL);
     if (rc != 0) {

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

end of thread, other threads:[~2014-12-04 12:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-03 18:20 [PATCH for-4.5] libxl_set_memory_target: only remove videoram from absolute targets Stefano Stabellini
2014-12-03 20:41 ` Konrad Rzeszutek Wilk
2014-12-04 12:21   ` Stefano Stabellini
2014-12-03 21:46 ` Don Slutz
2014-12-04 12:26   ` Stefano Stabellini

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.