mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemu: migration: Don't access disk members without lock
The initiation of a synchronous block job in the NBD storage migration code was placed after entering the monitor thus after the lock on the VM object was unlocked. Thankfully nothing bad could happen in this situation since the migration job prevents any disk detaches or other modifications of the domain object. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
082266bf27
commit
d4e57c6f04
@ -833,11 +833,12 @@ qemuMigrationSrcDriveMirror(virQEMUDriverPtr driver,
|
||||
hoststr, port, diskAlias) < 0))
|
||||
goto cleanup;
|
||||
|
||||
qemuBlockJobSyncBegin(disk);
|
||||
|
||||
if (qemuDomainObjEnterMonitorAsync(driver, vm,
|
||||
QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
|
||||
goto cleanup;
|
||||
|
||||
qemuBlockJobSyncBegin(disk);
|
||||
/* Force "raw" format for NBD export */
|
||||
mon_ret = qemuMonitorDriveMirror(priv->mon, diskAlias, nbd_dest,
|
||||
"raw", mirror_speed, 0, 0, mirror_flags);
|
||||
|
Loading…
x
Reference in New Issue
Block a user