direct-io.hg
changeset 7416:377b64f085d0
Fix call to getVCpuCount for dom0.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | emellor@leeni.uk.xensource.com |
---|---|
date | Tue Oct 18 17:45:50 2005 +0100 (2005-10-18) |
parents | 3d27ee7da0c1 |
children | c24fae1cd39d |
files | tools/python/xen/xend/XendDomain.py |
line diff
1.1 --- a/tools/python/xen/xend/XendDomain.py Tue Oct 18 17:40:31 2005 +0100 1.2 +++ b/tools/python/xen/xend/XendDomain.py Tue Oct 18 17:45:50 2005 +0100 1.3 @@ -141,7 +141,7 @@ class XendDomain: 1.4 1.5 # target == 0 means use all processors 1.6 if target > 0: 1.7 - self.setVCpuCount(target) 1.8 + dom0.setVCpuCount(target) 1.9 1.10 1.11 def _add_domain(self, info):