aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2006-12-14 17:37:29 +0000
committerEwan Mellor <ewan@xensource.com>2006-12-14 17:37:29 +0000
commit8e5b7018e711906b70f7a2cd3d07f4e4662e76e9 (patch)
treef33b4b9ad2a00d12d49aff0be6c51f190ea2a466
parent5d46b4c6361eb0c043a4d0bd0f26f2a248e487b4 (diff)
downloadxen-8e5b7018e711906b70f7a2cd3d07f4e4662e76e9.tar.gz
xen-8e5b7018e711906b70f7a2cd3d07f4e4662e76e9.tar.bz2
xen-8e5b7018e711906b70f7a2cd3d07f4e4662e76e9.zip
Remove a number of unused configuration dictionaries -- these have all
moved into XendConfig now. Signed-off-by: Ewan Mellor <ewan@xensource.com>
-rw-r--r--tools/python/xen/xend/XendDomainInfo.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py
index e26d2ffdab..fd24223489 100644
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -59,65 +59,6 @@ log = logging.getLogger("xend.XendDomainInfo")
#log.setLevel(logging.TRACE)
-def bool0(v):
- return v != "0" and bool(v)
-
-
-##
-# All parameters of VMs that may be configured on-the-fly, or at start-up.
-#
-VM_CONFIG_PARAMS = [
- ('name', str),
- ('on_poweroff', str),
- ('on_reboot', str),
- ('on_crash', str),
- ]
-
-
-##
-# Configuration entries that we expect to round-trip -- be read from the
-# config file or xc, written to save-files (i.e. through sxpr), and reused as
-# config on restart or restore, all without munging. Some configuration
-# entries are munged for backwards compatibility reasons, or because they
-# don't come out of xc in the same form as they are specified in the config
-# file, so those are handled separately.
-ROUNDTRIPPING_CONFIG_ENTRIES = [
- ('uuid', str),
- ('vcpus', int),
- ('vcpu_avail', int),
- ('cpu_cap', int),
- ('cpu_weight', int),
- ('memory', int),
- ('shadow_memory', int),
- ('maxmem', int),
- ('bootloader', str),
- ('bootloader_args', str),
- ('features', str),
- ('localtime', bool0),
- ]
-
-ROUNDTRIPPING_CONFIG_ENTRIES += VM_CONFIG_PARAMS
-
-
-##
-# All entries written to the store. This is VM_CONFIG_PARAMS, plus those
-# entries written to the store that cannot be reconfigured on-the-fly.
-#
-VM_STORE_ENTRIES = [
- ('uuid', str),
- ('vcpus', int),
- ('vcpu_avail', int),
- ('memory', int),
- ('shadow_memory', int),
- ('maxmem', int),
- ('start_time', float),
- ('on_xend_start', str),
- ('on_xend_stop', str),
- ]
-
-VM_STORE_ENTRIES += VM_CONFIG_PARAMS
-
-
#
# There are a number of CPU-related fields:
#