search for: hvm_build_set_params

Displaying 11 results from an estimated 11 matches for "hvm_build_set_params".

2010 Aug 17
3
libxl build failure in latest xen
...red -o libxenlight.so.1.0.0 flexarray.o > libxl.o libxl_pci.o libxl_dom.o libxl_exec.o libxl_xshelp.o libxl_device.o > libxl_internal.o xenguest.o libxl_utils.o osdeps.o libxl_paths.o > libxl_bootloader.o libxl_blktap2.o > /usr/bin/ld: libxl_dom.o: relocation R_X86_64_PC32 against > `hvm_build_set_params'' can not be used when making a shared object; > recompile with -fPIC > /usr/bin/ld: final link failed: Bad value > collect2: ld returned 1 exit status > make: *** [libxenlight.so.1.0.0] Error 1 I suspect it is caused by changeset 21966, which add the hidden attribute, but didn...
2013 Feb 01
2
[PATCH v2 02/03] 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
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
2013 Sep 06
5
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...ted use xenstore.h instead > ^ > xenguest_stubs.c: In function 'dispatch_suspend': > xenguest_stubs.c:197:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] > int domid = (int) arg; > ^ > xenguest_stubs.c: In function 'hvm_build_set_params': > xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' > va_hvm->acpi_enabled = f.acpi; > ^ > xenguest_stubs.c: At top level: > xenguest_stubs.c:470:3: warning: initialization from incompatible pointer type [enab...
2013 Sep 24
0
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...ted use xenstore.h instead > ^ > xenguest_stubs.c: In function 'dispatch_suspend': > xenguest_stubs.c:197:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] > int domid = (int) arg; > ^ > xenguest_stubs.c: In function 'hvm_build_set_params': > xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' > va_hvm->acpi_enabled = f.acpi; > ^ > xenguest_stubs.c: At top level: > xenguest_stubs.c:470:3: warning: initialization from incompatible pointer type [enab...
2013 Sep 24
2
Bug#710650: Bug#718767: transition: ocaml 4.00.1
On 09/24/2013 10:04 PM, St?phane Glondu wrote: > Le 24/09/2013 15:48, St?phane Glondu a ?crit : >> If I remove all binary packages of xen-api from testing, the following >> new packages are broken: xcp-guest-templates, nova-xcp-plugins, >> nova-compute-xen. >> >> xcp-guest-templates is built by guest-templates which seems to be a leaf >> package and could be
2013 Sep 06
0
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...ad >> ^ >> xenguest_stubs.c: In function 'dispatch_suspend': >> xenguest_stubs.c:197:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] >> int domid = (int) arg; >> ^ >> xenguest_stubs.c: In function 'hvm_build_set_params': >> xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' >> va_hvm->acpi_enabled = f.acpi; >> ^ >> xenguest_stubs.c: At top level: >> xenguest_stubs.c:470:3: warning: initialization from incompatibl...
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
2009 Nov 18
6
[PATCH 1/3] libxenlight: Clean up logging arrangements
...c_hvm_build(ctx->xch, domid, info->max_memkb / 1024, info->kernel); if (ret) { - XL_LOG(ctx, XL_LOG_ERROR, "hvm building failed: %d", ret); + XL_LOG_ERRNOVAL(ctx, XL_LOG_ERROR, ret, "hvm building failed"); return ERROR_FAIL; } ret = hvm_build_set_params(ctx->xch, domid, info->u.hvm.apic, info->u.hvm.acpi, @@ -137,7 +140,7 @@ int build_hvm(struct libxl_ctx *ctx, uint32_t domid, info->max_vcpus, state->store_port, &state->store_mfn); if (ret) { - XL_LOG...
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...->kernel.path, + libxl_abs_path(&gc, (char *)info->kernel.path, libxl_xenfirmwaredir_path())); if (ret) { XL_LOG_ERRNOVAL(ctx, XL_LOG_ERROR, ret, "hvm building failed"); - return ERROR_FAIL; + goto out; } ret = hvm_build_set_params(ctx->xch, domid, info, state->store_port, &state->store_mfn, state->console_port, &state->console_mfn); if (ret) { XL_LOG_ERRNOVAL(ctx, XL_LOG_ERROR, ret, "hvm build set params failed"); - return ERROR_FAIL; +...