aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorPaul Durrant <paul.durrant@citrix.com>2011-11-18 13:31:43 +0000
committerPaul Durrant <paul.durrant@citrix.com>2011-11-18 13:31:43 +0000
commit93073357470ec76aa1e07672934719d5542b24ad (patch)
tree5708da9acf9fef41eba01ccd832145e37aabdd39 /tools/python
parent04678eb8f30a83620fa2c960431dfe4fb40d86f2 (diff)
downloadxen-93073357470ec76aa1e07672934719d5542b24ad.tar.gz
xen-93073357470ec76aa1e07672934719d5542b24ad.tar.bz2
xen-93073357470ec76aa1e07672934719d5542b24ad.zip
hvmloader: Move acpi_enabled out of hvm_info_table into xenstore
Since hvmloader has a xentore client, use a platform key in xenstore to indicate whether ACPI is enabled or not rather than the shared hvm_info_table structure. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/xen/lowlevel/xc/xc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c
index c9e54b957c..5f8f711e40 100644
--- a/tools/python/xen/lowlevel/xc/xc.c
+++ b/tools/python/xen/lowlevel/xc/xc.c
@@ -996,7 +996,6 @@ static PyObject *pyxc_hvm_build(XcObject *self,
if ( va_map == NULL )
return PyErr_SetFromErrno(xc_error_obj);
va_hvm = (struct hvm_info_table *)(va_map + HVM_INFO_OFFSET);
- va_hvm->acpi_enabled = acpi;
va_hvm->apic_mode = apic;
va_hvm->nr_vcpus = vcpus;
memcpy(va_hvm->vcpu_online, vcpu_avail, sizeof(vcpu_avail));