mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 23:07:44 +00:00
qemu: Don't always wait for SPICE to finish migration
When SPICE graphics is configured for a domain but we did not ask the client to switch to the destination, we should not wait for SPICE_MIGRATE_COMPLETED event (which will never come). https://bugzilla.redhat.com/show_bug.cgi?id=1151723 Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
3ecd73c4d8
commit
bd7c8a693d
@ -137,6 +137,8 @@ struct qemuDomainJobObj {
|
|||||||
qemuDomainJobInfoPtr current; /* async job progress data */
|
qemuDomainJobInfoPtr current; /* async job progress data */
|
||||||
qemuDomainJobInfoPtr completed; /* statistics data of a recently completed job */
|
qemuDomainJobInfoPtr completed; /* statistics data of a recently completed job */
|
||||||
bool abortJob; /* abort of the job requested */
|
bool abortJob; /* abort of the job requested */
|
||||||
|
bool spiceMigration; /* we asked for spice migration and we
|
||||||
|
* should wait for it to finish */
|
||||||
bool spiceMigrated; /* spice migration completed */
|
bool spiceMigrated; /* spice migration completed */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2415,7 +2415,8 @@ qemuMigrationWaitForSpice(virDomainObjPtr vm)
|
|||||||
bool wait_for_spice = false;
|
bool wait_for_spice = false;
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
|
|
||||||
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_SEAMLESS_MIGRATION))
|
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_SEAMLESS_MIGRATION) ||
|
||||||
|
!priv->job.spiceMigration)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
for (i = 0; i < vm->def->ngraphics; i++) {
|
for (i = 0; i < vm->def->ngraphics; i++) {
|
||||||
@ -2789,6 +2790,7 @@ qemuDomainMigrateGraphicsRelocate(virQEMUDriverPtr driver,
|
|||||||
QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
|
QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
|
||||||
ret = qemuMonitorGraphicsRelocate(priv->mon, type, listenAddress,
|
ret = qemuMonitorGraphicsRelocate(priv->mon, type, listenAddress,
|
||||||
port, tlsPort, tlsSubject);
|
port, tlsPort, tlsSubject);
|
||||||
|
priv->job.spiceMigration = !ret;
|
||||||
if (qemuDomainObjExitMonitor(driver, vm) < 0)
|
if (qemuDomainObjExitMonitor(driver, vm) < 0)
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user