search for: config_sourc

Displaying 7 results from an estimated 7 matches for "config_sourc".

Did you mean: config_source
2012 Sep 21
8
PATCH [base vtpm and libxl patches 4/6] add iomem support to libxl
...e, "type", [("hvm", Struct(None, [("firmware", string), diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -574,8 +574,8 @@ static void parse_config_data(const char *config_source, long l; XLU_Config *config; XLU_ConfigList *cpus, *vbds, *nics, *pcis, *cvfbs, *cpuids; - XLU_ConfigList *ioports, *irqs; - int num_ioports, num_irqs; + XLU_ConfigList *ioports, *irqs, *iomem; + int num_ioports, num_irqs, num_iomem; int pci_power_mgmt = 0; int...
2013 Jul 04
2
[PATCH] [Backport 4.2.x] Fix issue with 'xl list -l' showing domids as -1 when using SXP
...AT_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
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
...xl_ram_size(uint32_t vram_sizekb, + uint32_t ram_sizekb) +{ + uint32_t vram = msb_mask(2 * vram_sizekb * 1024 - 1); + uint32_t ram = msb_mask(2 * ram_sizekb * 1024 - 1); + + return (vram + ram + 1023) / 1024; } static void parse_config_data(const char *config_source, @@ -1262,6 +1285,27 @@ skip_vfb: if (libxl_defbool_val(vga)) b_info->u.hvm.vga.type = LIBXL_VGA_INTERFACE_TYPE_STD; + if (!xlu_cfg_get_defbool(config, "qxl", &vga, 0)) { + if (libxl_defbool_val(vga)) { + b_info->u...
2012 Sep 27
18
[PATCH 09/11] add iomem support to libxl
...[("hvm", Struct(None, [("firmware", string), diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 1627cac..fe8e925 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -574,8 +574,8 @@ static void parse_config_data(const char *config_source, long l; XLU_Config *config; XLU_ConfigList *cpus, *vbds, *nics, *pcis, *cvfbs, *cpuids; - XLU_ConfigList *ioports, *irqs; - int num_ioports, num_irqs; + XLU_ConfigList *ioports, *irqs, *iomem; + int num_ioports, num_irqs, num_iomem; int pci_power_mgmt = 0; int...
2013 Apr 12
11
[PATCH v4 1/2] libxl: postpone backend name resolution
...;%s is an invalid domain identifier (rc=%d)\n", p, rc); exit(2); } - common_domname = was_name ? p : libxl_domid_to_name(ctx, domid); + common_domname = libxl_domid_to_name(ctx, domid); return domid; } @@ -1095,12 +1072,7 @@ static void parse_config_data(const char *config_source, break; *p2 = ''\0''; if (!strcmp(p, "backend")) { - if(domain_qualifier_to_domid(p2 + 1, &(vtpm->backend_domid), 0)) - { - fprintf(stderr, -...
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
2013 Sep 23
57
[PATCH RFC v13 00/20] Introduce PVH domU support
This patch series is a reworking of a series developed by Mukesh Rathor at Oracle. The entirety of the design and development was done by him; I have only reworked, reorganized, and simplified things in a way that I think makes more sense. The vast majority of the credit for this effort therefore goes to him. This version is labelled v13 because it is based on his most recent series, v11.