[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: Update VCPUs_live
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1234869214 0 # Node ID 634b425cafa3dd9a92d8a921281a9f689448254d # Parent 34812acece0321732fb126665febbbedf4e18b22 xend: Update VCPUs_live XendConfig.py said about VCPUs_live as follows. -- the number of VCPUs currently up, as reported by Xen. But the value of VCPUs_live always is 1 till xm vcpu-set get executed. This patch updates VCPUs_live by using online_vcpus. Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx> --- tools/python/xen/xend/XendConfig.py | 2 ++ 1 files changed, 2 insertions(+) diff -r 34812acece03 -r 634b425cafa3 tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py Tue Feb 17 11:12:50 2009 +0000 +++ b/tools/python/xen/xend/XendConfig.py Tue Feb 17 11:13:34 2009 +0000 @@ -431,6 +431,8 @@ class XendConfig(dict): def _vcpus_sanity_check(self): if 'VCPUs_max' in self and 'vcpu_avail' not in self: self['vcpu_avail'] = (1 << self['VCPUs_max']) - 1 + if 'online_vcpus' in self: + self['VCPUs_live'] = self['online_vcpus'] def _uuid_sanity_check(self): """Make sure UUID is in proper string format with hyphens.""" _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |