aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Hand <steven@xensource.com>2007-04-27 14:45:06 +0100
committerSteven Hand <steven@xensource.com>2007-04-27 14:45:06 +0100
commitb8057a726d7f47b47f6c4ef97032aba93409c026 (patch)
tree6353db21c2bd45e1dcc07815d478075a519cd5fe
parentec2ecedd08e3dd892074f39618ab873ee8a4ce04 (diff)
downloadxen-b8057a726d7f47b47f6c4ef97032aba93409c026.tar.gz
xen-b8057a726d7f47b47f6c4ef97032aba93409c026.tar.bz2
xen-b8057a726d7f47b47f6c4ef97032aba93409c026.zip
Allow dynamic_min/dynamic_max to (temporarily) be out of sync; in practice
we keep them identical but non-atomically. Signed-off-by: Steven Hand <steven@xensource.com>
-rw-r--r--tools/python/xen/xend/XendConfig.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py
index daa4978eef..6ced067f7b 100644
--- a/tools/python/xen/xend/XendConfig.py
+++ b/tools/python/xen/xend/XendConfig.py
@@ -354,9 +354,6 @@ class XendConfig(dict):
if not self["memory_static_min"] <= self["memory_static_max"]:
raise XendConfigError("memory_static_min must be less " \
"than or equal to memory_static_max")
- if not self["memory_dynamic_min"] <= self["memory_dynamic_max"]:
- raise XendConfigError("memory_dynamic_min must be less " \
- "than or equal to memory_dynamic_max")
if not self["memory_static_min"] <= self["memory_dynamic_min"]:
raise XendConfigError("memory_static_min must be less " \
"than or equal to memory_dynamic_min")