|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [patch 1/9] xend: pass-through: report attach errors from device model
Cc: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
Cc: Edwin Zhai <edwin.zhai@xxxxxxxxx>
Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx>
---
Changes
- Use spaces for indentation
- Removed spurious debug message
Index: xen-unstable.hg/tools/python/xen/xend/XendDomainInfo.py
===================================================================
--- xen-unstable.hg.orig/tools/python/xen/xend/XendDomainInfo.py
2009-06-04 12:45:56.000000000 +1000
+++ xen-unstable.hg/tools/python/xen/xend/XendDomainInfo.py 2009-06-04
12:45:58.000000000 +1000
@@ -752,6 +752,12 @@ class XendDomainInfo:
vslot = xstransact.Read("/local/domain/0/device-model/%i/parameter"
% self.getDomid())
+ try:
+ vslot_int = int(vslot, 16)
+ except ValueError:
+ raise VmError(("Cannot pass-through PCI function '%s'. " +
+ "Device model reported an error: %s") %
+ (bdf_str, vslot))
else:
vslot = new_dev['vslot']
--
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |