Jeremy Fitzhardinge
2010-Apr-30 23:04 UTC
[Xen-devel] [PATCH] libxl: make set_memory_target work on domains with no videoram
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@citrix.com>
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@lists.xensource.com
http://lists.xensource.com/xen-devel
Vincent Hanquez
2010-May-01 08:49 UTC
[Xen-devel] Re: [PATCH] libxl: make set_memory_target work on domains with no videoram
On 01/05/10 00:04, Jeremy Fitzhardinge wrote:> 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@citrix.com> >Acked-by: Vincent Hanquez <vincent.hanquez@eu.citrix.com> Thanks Jeremy, -- Vincent _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel