search for: xlu_cfg_replace_str

Displaying 12 results from an estimated 12 matches for "xlu_cfg_replace_str".

2012 Jan 23
2
[PATCH] xl: remove duplicate line
...g Wang <zhigang.x.wang@oracle.com> diff -r 5b2676ac1321 -r 35c926c69a13 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Mon Jan 09 16:01:44 2012 +0100 +++ b/tools/libxl/xl_cmdimpl.c Mon Jan 23 11:32:29 2012 -0500 @@ -774,8 +774,6 @@ static void parse_config_data(const char xlu_cfg_replace_string (config, "kernel", &b_info->u.pv.kernel.path, 0); - xlu_cfg_replace_string (config, "kernel", &b_info->u.pv.kernel.path, 0); - xlu_cfg_get_string (config, "root", &root, 0); xlu_cfg_get_string (config, "extra",...
2013 Jan 18
6
[PATCH v1 01/02] HVM firmware passthrough libxl support
This patch introduces support for two new parameters in libxl: smbios_firmware=<path_to_smbios_structures_file> acpi_firmware=<path_to_acpi_tables_file> The changes are primarily in the domain building code where the firmware files are read and passed to libxc for loading into the new guest. After the domain building call to libxc, the addresses for the loaded blobs are returned and
2011 Nov 17
29
[PATCH 00 of 17] Documentation updates
The following series flushes my documentation queue and replaces previous postings of those patches. The main difference is that the xl cfg file is now formatted using POD instead of markdown and presented as a manpage. I have setup a cron job to build docs/html and publish it at http://xenbits.xen.org/docs/unstable/ (it''s a bit bare right now). The motivation for some of these patches
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
...o_memkb == LIBXL_MEMKB_DEFAULT) + || (b_info->video_memkb < qxl_ram)) { + b_info->video_memkb = qxl_ram; + } + } + } + xlu_cfg_get_defbool(config, "vnc", &b_info->u.hvm.vnc.enable, 0); xlu_cfg_replace_string (config, "vnclisten", &b_info->u.hvm.vnc.listen, 0); -- Zhou Peng _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...xl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Thu May 17 16:39:51 2012 +0100 +++ b/tools/libxl/xl_cmdimpl.c Thu May 17 17:51:32 2012 +0100 @@ -843,7 +843,7 @@ static void parse_config_data(const char char *cmdline = NULL; const char *root = NULL, *extra = ""; - xlu_cfg_replace_string (config, "kernel", &b_info->u.pv.kernel.path, 0); + xlu_cfg_replace_string (config, "kernel", &b_info->u.pv.kernel, 0); xlu_cfg_get_string (config, "root", &root, 0); xlu_cfg_get_string (config, "extra", &ex...
2010 Sep 10
0
[PATCH] xl: remove another string literal from config struct
# HG changeset patch # User Ian Campbell <ian.campbell@citrix.com> # Date 1284126850 -3600 # Node ID d158e101baa1b3b2e0920a6476d1dae4d00b336b # Parent 69dd2d8cfa88f042a4a22fe37512a3214518c4ba xl: remove another string literal from config struct Broken by 22124:098790dd9327 "xl: use xlu_cfg_replace_string in a few more places" Signed-off-by: Ian Campbell <ian.campbell@citrix.com> diff -r 69dd2d8cfa88 -r d158e101baa1 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Fri Sep 10 13:56:10 2010 +0100 +++ b/tools/libxl/xl_cmdimpl.c Fri Sep 10 14:54:10 2010 +0100 @@ -274,7 +274,7 @@ s...
2012 Feb 29
5
[PATCH] [PATCH v4] Add the bios option to specify the bios to load
...("acpi", bool), diff -r adcd6ab160fa -r 3c10ba854d37 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Thu Feb 23 10:29:27 2012 +0000 +++ b/tools/libxl/xl_cmdimpl.c Wed Feb 29 13:00:06 2012 +0000 @@ -704,6 +704,12 @@ static void parse_config_data(const char xlu_cfg_replace_string (config, "firmware_override", &b_info->u.hvm.firmware, 0); + if (!xlu_cfg_get_string(config, "bios", &buf, 0) && + libxl_bios_type_from_string(buf, &b_info->u.hvm.bios)) { + fprintf(st...
2011 Jan 11
0
[PATCH, v2]: xl: move domain struct init functions to libxl
...quot;,"); if (!p) @@ -1187,7 +1041,7 @@ skip_vfb: if (c_info->hvm == 1) { /* init dm from c and b */ - init_dm_info(dm_info, c_info, b_info); + libxl_init_dm_info(dm_info, c_info, b_info); /* then process config related to dm */ xlu_cfg_replace_string (config, "device_model", &dm_info->device_model); @@ -4322,7 +4176,7 @@ int main_networkattach(int argc, char ** fprintf(stderr, "%s is an invalid domain identifier\n", argv[optind]); return 1; } - init_nic_info(&nic, -1); + libxl_devic...
2013 Nov 19
13
[PATCH v7 1/2] libxl: usb2 and usb3 controller support for upstream qemu
...mouse, # - "mouse" for PS/2 protocol relative mouse diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 5bd9b15..f78a19a 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -1540,6 +1540,8 @@ skip_vfb: xlu_cfg_replace_string (config, "serial", &b_info->u.hvm.serial, 0); xlu_cfg_replace_string (config, "boot", &b_info->u.hvm.boot, 0); xlu_cfg_get_defbool(config, "usb", &b_info->u.hvm.usb, 0); + if (!xlu_cfg_get_long (config, "usbversion&...
2011 Nov 29
18
[PATCH 0 of 6] Add support for a VM generation ID virtual device (v2)
The following is a revised patch series to add support for a VM generation ID virtual device for HVM guests. The basic requirements of this device are as follows: - It must be exposed somewhere in ACPI namespace with a _CID of "VM_Gen_Counter". - It must also include a _DDN of "VM_Gen_Counter". - It must contain a _HID object but no particular value is required. - It must
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.
2013 Oct 21
36
[PATCH 0 of 5 V3] Remus/Libxl: Network buffering support
This patch series adds support for network buffering in the Remus codebase in libxl. Changes in V3: [1/5] Fix redundant checks in configure scripts (based on Ian Campbell''s suggestions) [2/5] Introduce locking in the script, during IFB setup. Add xenstore paths used by netbuf scripts to xenstore-paths.markdown [3/5] Hotplug scripts setup/teardown invocations are now