15 lines
653 B
Diff
15 lines
653 B
Diff
|
Index: xen-3.1-testing/tools/python/xen/xend/XendDomainInfo.py
|
||
|
===================================================================
|
||
|
--- xen-3.1-testing.orig/tools/python/xen/xend/XendDomainInfo.py
|
||
|
+++ xen-3.1-testing/tools/python/xen/xend/XendDomainInfo.py
|
||
|
@@ -601,6 +601,9 @@ class XendDomainInfo:
|
||
|
_, dev_info = sxprs[dev]
|
||
|
else: # 'vbd' or 'tap'
|
||
|
dev_info = self.getDeviceInfo_vbd(dev)
|
||
|
+ # To remove the UUID of the device from refs,
|
||
|
+ # deviceClass must be always 'vbd'.
|
||
|
+ deviceClass = 'vbd'
|
||
|
if dev_info is None:
|
||
|
return rc
|
||
|
|