|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-3.2-testing] xend: On block-attach, remove device i
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1201001121 0
# Node ID 430b2159c4b723c7c6e45df102861be558159093
# Parent 062c0bfa17f6b7dbd354cea40fa94c80ca8f5c66
xend: On block-attach, remove device information when VmError occurs.
I tested xm block-attach command with a wrong
parameter(file:). Naturally a command error occurred. Then I retested
xm block-attach command with a correct parameter(phy:). But a command
error occurred again. The second command error occurred because Xend
did not remove device information from self.info when the first
command error occurred.
Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
xen-unstable changeset: 16777:6f3fb3f86b68182bb61a661e81f346f653005852
xen-unstable date: Tue Jan 22 09:51:49 2008 +0000
---
tools/python/xen/xend/XendDomainInfo.py | 5 +++++
1 files changed, 5 insertions(+)
diff -r 062c0bfa17f6 -r 430b2159c4b7 tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py Tue Jan 22 11:25:00 2008 +0000
+++ b/tools/python/xen/xend/XendDomainInfo.py Tue Jan 22 11:25:21 2008 +0000
@@ -535,6 +535,11 @@ class XendDomainInfo:
self._createDevice(dev_type, dev_config_dict)
self._waitForDevice(dev_type, devid)
except VmError, ex:
+ del self.info['devices'][dev_uuid]
+ if dev_type == 'tap':
+ self.info['vbd_refs'].remove(dev_uuid)
+ else:
+ self.info['%s_refs' % dev_type].remove(dev_uuid)
raise ex
else:
devid = None
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-3.2-testing] xend: On block-attach, remove device information when VmError occurs.,
Xen patchbot-3.2-testing <=
|
|
|
|
|