From: Keir Fraser Date: Thu, 20 Nov 2008 14:17:09 +0000 (+0000) Subject: xend: Make _setCPUAffinity() errors nonfatal on domain resume X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14043^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ed2dbb7a0f02407633a19bf57a1106e0c39a290b;p=xen.git xend: Make _setCPUAffinity() errors nonfatal on domain resume This patch allows domains to be resumed on different number of CPUs. After c/s 18764, a domain cannot be resumed when _setCPUAffinity() fails, which happens when affinity should be set to a non-existent CPU. This patch makes _setCPUAffinity() errors nonfatal. Signed-off-by: Jiri Denemark --- diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index eae2a6eea2..bab9d3aef2 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -479,7 +479,14 @@ class XendDomainInfo: if state in (DOM_STATE_SUSPENDED, DOM_STATE_HALTED): try: self._constructDomain() - self._setCPUAffinity() + + try: + self._setCPUAffinity() + except: + # usually a CPU we want to set affinity to does not exist + # we just ignore it so that the domain can still be restored + log.warn("Cannot restore CPU affinity") + self._storeVmDetails() self._createChannels() self._createDevices()