search for: printf_info_sexp

Displaying 6 results from an estimated 6 matches for "printf_info_sexp".

2013 Jul 04
2
[PATCH] [Backport 4.2.x] Fix issue with 'xl list -l' showing domids as -1 when using SXP
...l_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -2809,7 +2809,7 @@ static void list_domains_details(const libxl_dominfo *info, int nb_domain) if (default_output_format == OUTPUT_FORMAT_JSON) s = printf_info_one_json(hand, info[i].domid, &d_config); else - printf_info_sexp(domid, &d_config); + printf_info_sexp(info[i].domid, &d_config); libxl_domain_config_dispose(&d_config); free(data); free(config_source); -- 1.7.9.5
2013 Jun 18
33
DomU suspension/hibernation
Hey, I thought there was supposed to be an ability for domU''s to be put into a hibernated state (E.g. current running tasks and memory) when dom0 is shutdown or rebooted. When I look in my /etc/default/xendomains file, I have the variable''s "XENDOMAINS_SAVE=/var/lib/xen/save" and "XENDOMAINS_RESTORE=true". However, when I reboot, I always have to restart my
2012 Mar 25
1
[PATCH v3] libxl: support for "rtc_timeoffset" and "localtime"
...e rtc_timeoffset adjust logic to libxl * Update docs Changed since v1: * Add tm_gmtoff, instead subtract, to rtc_timeoffset (Giam Teck Choon) * Add docs for the newly supported options * Include "bool localtime" in libxl API * Remove the unneeded "rtc_timeoffset" output in printf_info_sexp() diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 55f7e75..b53887c 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -558,6 +558,14 @@ frequency changes. Please see F<docs/misc/tscmode.txt> for more information on this option. +=item B<localtime=BOOLE...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...(config, "ramdisk", &b_info->u.pv.ramdisk, 0); break; } default: diff -r ac45608496cd -r cdb947baea10 tools/libxl/xl_sxp.c --- a/tools/libxl/xl_sxp.c Thu May 17 16:39:51 2012 +0100 +++ b/tools/libxl/xl_sxp.c Thu May 17 17:51:32 2012 +0100 @@ -146,9 +146,9 @@ void printf_info_sexp(int domid, libxl_d break; case LIBXL_DOMAIN_TYPE_PV: printf("\t\t(linux %d)\n", 0); - printf("\t\t\t(kernel %s)\n", b_info->u.pv.kernel.path); + printf("\t\t\t(kernel %s)\n", b_info->u.pv.kernel); printf("\t\t\t(...
2013 Jul 23
73
Bug: Limitation of <=2GB RAM in domU persists with 4.3.0
I just built 4.3.0 in order to get > 2GB of RAM in domU with GPU passthrough without crashes. Unfortunately, the same crashes still happen. Massive frame buffer corruption on domU before it locks up solid. It seems the PCI memory stomp is still happening. I am using qemu-dm, as I did on Xen 4.2.x. So whatever fix for this went into 4.3.0 didn''t fix it for me. Passing less than 2GB
2013 Apr 18
9
[PATCH v5 1/2] libxl: Introduce functions to add and remove USB devices to an HVM guest
This patch exposes a generic interface which can be expanded in the future to implement USB for PVUSB, qemu, and stubdoms. It can also be extended to include other types of USB other than host USB (for example, tablets, mice, or keyboards). For each device removed or added, one of two protocols is available: * PVUSB * qemu (DEVICEMODEL) The caller can additionally specify "AUTO", in