If a domain has no videoram (say, dom0), then treat the size as 0 and
continue, rather than just failing.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
diff -r 0ea790d96997 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c Fri Apr 30 14:46:55 2010 -0700
+++ b/tools/libxl/libxl.c Fri Apr 30 15:59:25 2010 -0700
@@ -2292,9 +2292,10 @@
char *dompath = libxl_xs_get_dompath(ctx, domid);
videoram_s = libxl_xs_read(ctx, XBT_NULL, libxl_sprintf(ctx,
"%s/memory/videoram", dompath));
- if (!videoram_s)
- return -1;
- videoram = atoi(videoram_s);
+ if (videoram_s)
+ videoram = atoi(videoram_s);
+ else
+ videoram = 0;
libxl_xs_write(ctx, XBT_NULL, libxl_sprintf(ctx, "%s/memory/target",
dompath), "%lu", target_memkb);
rc = xc_domain_setmaxmem(ctx->xch, domid, target_memkb +
LIBXL_MAXMEM_CONSTANT);
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|