mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-06 21:15:22 +00:00
qemu: Fix detection of failed migration
When QEMU reported failed or canceled migration, we correctly detected it but didn't really consider it as an error condition and migration protocol just went on. Luckily, some of the subsequent steps eventually failed end we reported an (unrelated and mostly random) error back to the caller.
This commit is contained in:
parent
0129b9ac1d
commit
e173e81ed9
@ -882,7 +882,7 @@ qemuMigrationUpdateJobStatus(struct qemud_driver *driver,
|
||||
enum qemuDomainAsyncJob asyncJob)
|
||||
{
|
||||
qemuDomainObjPrivatePtr priv = vm->privateData;
|
||||
int ret = -1;
|
||||
int ret;
|
||||
int status;
|
||||
unsigned long long memProcessed;
|
||||
unsigned long long memRemaining;
|
||||
@ -906,6 +906,7 @@ qemuMigrationUpdateJobStatus(struct qemud_driver *driver,
|
||||
}
|
||||
priv->job.info.timeElapsed -= priv->job.start;
|
||||
|
||||
ret = -1;
|
||||
switch (status) {
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_INACTIVE:
|
||||
priv->job.info.type = VIR_DOMAIN_JOB_NONE;
|
||||
|
Loading…
Reference in New Issue
Block a user