a0e0589e8d
Rename xen_pvdrivers.conf to xen_pvdrivers-<kernel flavor>.conf - bnc#739585 - L3: Xen block-attach fails after repeated attach/detach blktap-close-fifos.patch - bnc#741159 - Fix default setting of XENSTORED_ROOTDIR in xencommons init script xencommons-xenstored-root.patch - bnc#740625 - xen: cannot interact with xend after upgrade (SLES) - bnc#738694 - xen: cannot interact with xend after upgrade (os12.1) - Other README changes included. README.SuSE - bnc#694863 - kexec fails in xen 24478-libxl_add_feature_flag_to_xenstore_for_XS_RESET_WATCHES.patch - fate#310510 - fix xenpaging xenpaging.speedup-page-out.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=165
17 lines
891 B
Diff
17 lines
891 B
Diff
Index: xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
|
===================================================================
|
|
--- xen-4.1.2-testing.orig/tools/python/xen/xend/XendDomainInfo.py
|
|
+++ xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
|
@@ -2778,7 +2778,10 @@ class XendDomainInfo:
|
|
from xen.xend import XendDomain
|
|
doms = XendDomain.instance().list('all')
|
|
for dom in filter (lambda d: d.domid != self.domid, doms):
|
|
- cpuinfo = dom.getVCPUInfo()
|
|
+ try:
|
|
+ cpuinfo = dom.getVCPUInfo()
|
|
+ except:
|
|
+ continue
|
|
for vcpu in sxp.children(cpuinfo, 'vcpu'):
|
|
if sxp.child_value(vcpu, 'online') == 0: continue
|
|
cpumap = list(sxp.child_value(vcpu,'cpumap'))
|