From 2fa8c71b9f71b6973cce13cd41a45aac4baf17de Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 31 Mar 2009 13:57:11 +0100 Subject: [PATCH] xend: Fix domain creation. Signed-off-by: Keir Fraser --- tools/python/xen/xend/XendDomainInfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 7497c7e435..8cc2084acf 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -2324,9 +2324,9 @@ class XendDomainInfo: if weight < 1 or weight > 65535: raise VmError("Cpu weight out of range, valid values are within range from 1 to 65535") - if cap < 0 or cap > dominfo.getVCpuCount() * 100: + if cap < 0 or cap > self.getVCpuCount() * 100: raise VmError("Cpu cap out of range, valid range is from 0 to %s for specified number of vcpus" % - (dominfo.getVCpuCount() * 100)) + (self.getVCpuCount() * 100)) # Test whether the devices can be assigned with VT-d pci = self.info["platform"].get("pci") -- 2.39.5