# HG changeset patch
# User Ewan Mellor <ewan@xxxxxxxxxxxxx>
# Date 1174588657 0
# Node ID abd9ae4f1f17f392d350fbc3e6dd1855cd9ad9aa
# Parent fa731dfb90d639cac9a01e99d62109e343fb5f76
Remove duplicate memory values from the SXP.
Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>
---
tools/python/xen/xend/XendConfig.py | 13 +------------
1 files changed, 1 insertion(+), 12 deletions(-)
diff -r fa731dfb90d6 -r abd9ae4f1f17 tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Thu Mar 22 18:36:53 2007 +0000
+++ b/tools/python/xen/xend/XendConfig.py Thu Mar 22 18:37:37 2007 +0000
@@ -44,7 +44,7 @@ def reverse_dict(adict):
return dict([(v, k) for k, v in adict.items()])
def bool0(v):
- return v != '0' and bool(v)
+ return v != '0' and v != 'False' and bool(v)
# Recursively copy a data struct, scrubbing out VNC passwords.
# Will scrub any dict entry with a key of 'vncpasswd' or any
@@ -128,7 +128,6 @@ XENAPI_PLATFORM_CFG = [ 'acpi', 'apic',
XENAPI_CFG_TYPES = {
'uuid': str,
- 'power_state': str,
'name_label': str,
'name_description': str,
'user_version': str,
@@ -853,16 +852,6 @@ class XendConfig(dict):
sxpr.append(["maxmem", int(self["memory_static_max"])/MiB])
sxpr.append(["memory", int(self["memory_dynamic_max"])/MiB])
-
- if not legacy_only:
- sxpr.append(['memory_dynamic_min',
- int(self.get('memory_dynamic_min'))])
- sxpr.append(['memory_dynamic_max',
- int(self.get('memory_dynamic_max'))])
- sxpr.append(['memory_static_max',
- int(self.get('memory_static_max'))])
- sxpr.append(['memory_static_min',
- int(self.get('memory_static_min'))])
for legacy in LEGACY_UNSUPPORTED_BY_XENAPI_CFG:
if legacy in ('domid', 'uuid'): # skip these
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|