search for: libxl_types

Displaying 20 results from an estimated 37 matches for "libxl_types".

2013 Aug 27
3
[PATCH v4] libxl: Spice vdagent support for upstream qemu
...so requires vdagent service installed on domU o.s. to work. Changes from v3: - Simple refresh. Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> --- docs/man/xl.cfg.pod.5 | 9 +++++++++ tools/libxl/libxl_create.c | 1 + tools/libxl/libxl_dm.c | 6 ++++++ tools/libxl/libxl_types.idl | 1 + tools/libxl/xl_cmdimpl.c | 2 ++ 5 files changed, 19 insertions(+) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 08d6cc4..170bc11 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1130,6 +1130,15 @@ Specify the ticket password which is used b...
2012 Jan 10
1
[PATCH] libxl: fix typo iff -> if
...t;zhigang.x.wang@oracle.com> # Date 1326227259 18000 # Node ID a78507899bea4824901d209d818b69545f607312 # Parent 03138a08366b895d79e143119d4c9c72833cdbcd libxl: fix typo iff -> if Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com> diff -r 03138a08366b -r a78507899bea tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Fri Dec 09 16:19:36 2011 +0000 +++ b/tools/libxl/libxl_types.idl Tue Jan 10 15:27:39 2012 -0500 @@ -106,7 +106,7 @@ libxl_dominfo = Struct("dominfo",[ ("dying", bool), ("shutdown_reason", uint8, False, -"&quo...
2013 Sep 20
0
[PATCH v2] libxl: spice usbredirection support for upstream qemu
...devices from spice client to domU''s qemu. The default is disabled (0). Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> --- docs/man/xl.cfg.pod.5 | 6 ++++++ tools/libxl/libxl.h | 11 +++++++++++ tools/libxl/libxl_dm.c | 14 ++++++++++++++ tools/libxl/libxl_types.idl | 1 + tools/libxl/xl_cmdimpl.c | 2 ++ 5 files changed, 34 insertions(+) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index f768784..8640384 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1144,6 +1144,12 @@ requires vdagent service installed on domU...
2012 Mar 25
1
[PATCH v3] libxl: support for "rtc_timeoffset" and "localtime"
...C appears as UTC or is offset by the host. Acked-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Lin Ming <mlin@ss.pku.edu.cn> --- docs/man/xl.cfg.pod.5 | 8 ++++++++ tools/libxl/libxl_create.c | 11 +++++++++++ tools/libxl/libxl_dom.c | 3 +++ tools/libxl/libxl_types.idl | 2 ++ tools/libxl/xl_cmdimpl.c | 5 +++++ 5 files changed, 29 insertions(+), 0 deletions(-) Changed since v2: * Move 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 ne...
2012 Apr 20
26
xl doesn't honour the parameter cpu_weight from my config file while xm does honour it
Hi, I''ve installed xen-unstable 4.2 from actual git (last commit was 4dc7dbef5400f0608321d579aebb57f933e8f707). When I start a domU with xm all is fine include the cpu_weight I configured in my domU config. When I start the domU with xl then all my domU have the default cpu_weight of 256 instead of the configured one. Was the name of cpu_weight being changed for xl command ? My domU
2012 Apr 20
26
xl doesn't honour the parameter cpu_weight from my config file while xm does honour it
Hi, I''ve installed xen-unstable 4.2 from actual git (last commit was 4dc7dbef5400f0608321d579aebb57f933e8f707). When I start a domU with xm all is fine include the cpu_weight I configured in my domU config. When I start the domU with xl then all my domU have the default cpu_weight of 256 instead of the configured one. Was the name of cpu_weight being changed for xl command ? My domU
2013 Oct 08
0
[PATCH v3] libxl: spice usbredirection support for upstream qemu
...nels. - Various code improvements. Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> --- docs/man/xl.cfg.pod.5 | 7 +++++++ tools/libxl/libxl.h | 11 +++++++++++ tools/libxl/libxl_create.c | 10 +++++++--- tools/libxl/libxl_dm.c | 12 ++++++++++++ tools/libxl/libxl_types.idl | 1 + tools/libxl/xl_cmdimpl.c | 2 ++ 6 files changed, 40 insertions(+), 3 deletions(-) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 76dd546..0cbd27d 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1152,6 +1152,13 @@ requires vdagent service in...
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
2012 Sep 27
18
[PATCH 09/11] add iomem support to libxl
...io->number - 1); + ret = ERROR_FAIL; + } + } + + + for (i = 0; i < d_config->num_nics; i++) { /* We have to init the nic here, because we still haven''t * called libxl_device_nic_add at this point, but qemu needs diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl index 6d5c578..cf83c60 100644 --- a/tools/libxl/libxl_types.idl +++ b/tools/libxl/libxl_types.idl @@ -140,6 +140,11 @@ libxl_ioport_range = Struct("ioport_range", [ ("number", uint32), ]) +libxl_iomem_range = Struct("iomem_range...
2014 Jun 10
0
Re: [PATCH v16] libxl: Add qxl vga interface support for upstream qemu
...unately, recently I have no time for in-depth debugging and most probably I not be able to solve the problem. > --- > docs/man/xl.cfg.pod.5 | 10 +++++++++- > tools/libxl/libxl_create.c | 13 +++++++++++++ > tools/libxl/libxl_dm.c | 8 ++++++++ > tools/libxl/libxl_types.idl | 1 + > tools/libxl/xl_cmdimpl.c | 2 ++ > 5 files changed, 33 insertions(+), 1 deletion(-) > > diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 > index 0ca37bc..972fc37 100644 > --- a/docs/man/xl.cfg.pod.5 > +++ b/docs/man/xl.cfg.pod.5 > @@ -1097,6...
2013 Jul 05
3
[PATCH] libxl: Add qxl vga interface support for upstream qemu
....com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> --- docs/man/xl.cfg.pod.5 | 10 +++++++++- tools/libxl/libxl_create.c | 16 ++++++++++++++++ tools/libxl/libxl_dm.c | 11 +++++++++++ tools/libxl/libxl_types.idl | 1 + tools/libxl/xl_cmdimpl.c | 2 ++ 5 files changed, 39 insertions(+), 1 deletion(-) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 069b73f..48c2669 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1018,6 +1018,9 @@ the amount of video ram is fi...
2012 Sep 21
8
PATCH [base vtpm and libxl patches 4/6] add iomem support to libxl
...io->number - 1); + ret = ERROR_FAIL; + } + } + + + for (i = 0; i < d_config->num_nics; i++) { /* We have to init the nic here, because we still haven''t * called libxl_device_nic_add at this point, but qemu needs diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl +++ b/tools/libxl/libxl_types.idl @@ -140,6 +140,11 @@ libxl_ioport_range = Struct("ioport_range", [ ("number", uint32), ]) +libxl_iomem_range = Struct("iomem_range", [ + ("start&qu...
2011 Nov 10
3
[PATCH] libxl: use named options for tsc_mode
...PARAVIRT: + tsc_mode = 3; + break; + default: + abort(); + } + xc_domain_set_tsc_info(ctx->xch, domid, tsc_mode, 0, 0, 0); if ( info->disable_migrate ) xc_domain_disable_migrate(ctx->xch, domid); diff -r 460b507e15f8 -r bc79b560aafa tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Thu Nov 10 10:18:29 2011 +0000 +++ b/tools/libxl/libxl_types.idl Thu Nov 10 10:54:39 2011 +0000 @@ -85,6 +85,13 @@ libxl_button = Enumeration("button", [ (2, "SLEEP"), ]) +libxl_tsc_mode = Enumeration("tsc_mode", [ +...
2013 Nov 19
13
[PATCH v7 1/2] libxl: usb2 and usb3 controller support for upstream qemu
...ction on all devices Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> --- docs/man/xl.cfg.pod.5 | 7 +++++++ tools/libxl/libxl.h | 14 ++++++++++++++ tools/libxl/libxl_create.c | 9 +++++++++ tools/libxl/libxl_dm.c | 24 ++++++++++++++++++++++++ tools/libxl/libxl_types.idl | 1 + tools/libxl/xl_cmdimpl.c | 2 ++ 6 files changed, 57 insertions(+) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index d2d8921..3151e80 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1189,6 +1189,13 @@ device. Enables or disables an emulated...
2012 Feb 29
5
[PATCH] [PATCH v4] Add the bios option to specify the bios to load
...l_domain_build_info *info) { + if (info->u.hvm.bios) + return libxl_bios_type_to_string(info->u.hvm.bios); switch (info->device_model_version) { case 1: return "rombios"; case 2: return "seabios"; diff -r adcd6ab160fa -r 3c10ba854d37 tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Thu Feb 23 10:29:27 2012 +0000 +++ b/tools/libxl/libxl_types.idl Wed Feb 29 13:00:06 2012 +0000 @@ -99,6 +99,12 @@ libxl_timer_mode = Enumeration("timer_mo (3, "one_missed_tick_pending"), ]) +libxl_bios_type = Enumeration("bios_t...
2012 May 30
1
[PATCH QXL 2/2] libxl: Add qxl vga interface support.
...libxl__sprintf(gc, "qxl-vga.ram_size=%lu", + b_info->u.hvm.vga.ramkb * 1024), + NULL); break; case LIBXL_VGA_INTERFACE_TYPE_DEFAULT: break; diff -r c6641e3fe158 tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Mon May 28 16:25:59 2012 +0800 +++ b/tools/libxl/libxl_types.idl Wed May 30 17:48:38 2012 +0800 @@ -128,6 +128,7 @@ libxl_vga_interface_type = Enumeration(" libxl_vga_interface_type = Enumeration("vga_interface_type", [ (0, "DEFAULT&qu...
2013 Apr 12
11
[PATCH v4 1/2] libxl: postpone backend name resolution
...ince v3: - Add #define LIBXL_HAVE_DEVICE_BACKEND_DOMNAME in libxl.h - Create libxl_domain_qualifier_to_domid function in libxl_util.h docs/misc/xl-disk-configuration.txt | 12 ++++++ tools/libxl/libxl.c | 17 +++++++-- tools/libxl/libxl.h | 12 ++++++ tools/libxl/libxl_types.idl | 5 +++ tools/libxl/libxl_utils.c | 19 ++++++++++ tools/libxl/libxl_utils.h | 1 + tools/libxl/libxlu_disk_l.l | 1 + tools/libxl/xl_cmdimpl.c | 75 ++++++++----------------------------- 8 files changed, 78 insertions(+), 64 deletions(-) diff...
2012 Aug 31
2
[PATCH V2] libxl/xl: implement support for guest iooprt and irq permissions
...+ ret = ERROR_FAIL; + } + } + for (i = 0; i < d_config->num_nics; i++) { /* We have to init the nic here, because we still haven''t * called libxl_device_nic_add at this point, but qemu needs diff -r ccbee5bcb31b -r ddde6c2c45de tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Fri Aug 31 12:03:55 2012 +0100 +++ b/tools/libxl/libxl_types.idl Fri Aug 31 16:54:01 2012 +0100 @@ -135,6 +135,11 @@ libxl_vga_interface_type = Enumeration(" # Complex libxl types # +libxl_ioport_range = Struct("ioport_range", [ + ("f...
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings to libxl, to make them useful for clients such as xapi/xenopsd (from XCP). There are a number of bugfixes to the existing bindings as well. I have an experimental version of xenopsd that successfully uses the new bindings. An earlier version of the first half of the series was submitted to the last by Ian Campbell on
2011 Nov 18
2
[PATCH 0 of 2] Add configuration options to selectively disable S3 and S4 (V3)
This patch series adds the ability to selectively disable the S3 and S4 ACPI power states for HVM guests. Since there is a general move towards retiring the hvm_info_table structure, the first patch moves the acpi_enabled flag out of the hvm_info_table and into a xenstore key (platform/acpi). The second patch then introduces the acpi_s3 and acpi_s4 configuration parameters to the xl config file