mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-21 20:15:17 +00:00
qemu: clean up migration ports when migration cancelled
If there's a migration cancelled, the bitmap of migration port should be cleaned up too. Signed-off-by: Zeng Junliang <zengjunliang@huawei.com> Signed-off-by: Jiri Denemark <jdenemar@redhat.com> (cherry picked from commit c92ca769af2bacefdd451802d7eb1adac5e6597c)
This commit is contained in:
parent
6f5b60a95b
commit
8521898936
@ -4341,12 +4341,16 @@ qemuMigrationFinish(virQEMUDriverPtr driver,
|
||||
qemuDomainObjPrivatePtr priv = vm->privateData;
|
||||
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
|
||||
virCapsPtr caps = NULL;
|
||||
unsigned short port;
|
||||
|
||||
VIR_DEBUG("driver=%p, dconn=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
|
||||
"cookieout=%p, cookieoutlen=%p, flags=%lx, retcode=%d",
|
||||
driver, dconn, vm, NULLSTR(cookiein), cookieinlen,
|
||||
cookieout, cookieoutlen, flags, retcode);
|
||||
|
||||
port = priv->migrationPort;
|
||||
priv->migrationPort = 0;
|
||||
|
||||
if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
|
||||
goto cleanup;
|
||||
|
||||
@ -4393,8 +4397,6 @@ qemuMigrationFinish(virQEMUDriverPtr driver,
|
||||
}
|
||||
|
||||
qemuMigrationStopNBDServer(driver, vm, mig);
|
||||
virPortAllocatorRelease(driver->migrationPorts, priv->migrationPort);
|
||||
priv->migrationPort = 0;
|
||||
|
||||
if (flags & VIR_MIGRATE_PERSIST_DEST) {
|
||||
virDomainDefPtr vmdef;
|
||||
@ -4527,6 +4529,7 @@ endjob:
|
||||
}
|
||||
|
||||
cleanup:
|
||||
virPortAllocatorRelease(driver->migrationPorts, port);
|
||||
if (vm) {
|
||||
VIR_FREE(priv->origname);
|
||||
virObjectUnlock(vm);
|
||||
|
Loading…
x
Reference in New Issue
Block a user