[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: fix external-device-migrate step 0
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1201703060 0 # Node ID 625c923f7b4a6c9ea6614aafba7714e431ca53a5 # Parent 87ab3222640c44cd0eee674f8841a823196500f3 xend: fix external-device-migrate step 0 Add domain name to a migrateDevice call, so the helper script (external-device-migrate example) does not fail at step 0 (MIGRATION_TEST). Signed-off-by: Pascal Bouchareine <pascal@xxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r 87ab3222640c -r 625c923f7b4a tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Wed Jan 30 14:23:17 2008 +0000 +++ b/tools/python/xen/xend/XendDomainInfo.py Wed Jan 30 14:24:20 2008 +0000 @@ -1585,7 +1585,7 @@ class XendDomainInfo: @raise: XendError for a device that cannot be migrated """ for (n, c) in self.info.all_devices_sxpr(): - rc = self.migrateDevice(n, c, network, dst, DEV_MIGRATE_TEST) + rc = self.migrateDevice(n, c, network, dst, DEV_MIGRATE_TEST, self.getName()) if rc != 0: raise XendError("Device of type '%s' refuses migration." % n) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |