mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
block: Add "drained begin/end" for transactional blockdev-backup
Similar to the previous patch, make sure that external events are not dispatched during transaction operations. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
1fdd4b7be3
commit
ff52bf36a3
1 changed files with 8 additions and 1 deletions
|
@ -1756,6 +1756,11 @@ static void blockdev_backup_prepare(BlkTransactionState *common, Error **errp)
|
|||
return;
|
||||
}
|
||||
|
||||
if (!blk_is_available(blk)) {
|
||||
error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, backup->device);
|
||||
return;
|
||||
}
|
||||
|
||||
target = blk_by_name(backup->target);
|
||||
if (!target) {
|
||||
error_setg(errp, "Device '%s' not found", backup->target);
|
||||
|
@ -1770,6 +1775,8 @@ static void blockdev_backup_prepare(BlkTransactionState *common, Error **errp)
|
|||
return;
|
||||
}
|
||||
aio_context_acquire(state->aio_context);
|
||||
state->bs = blk_bs(blk);
|
||||
bdrv_drained_begin(state->bs);
|
||||
|
||||
qmp_blockdev_backup(backup->device, backup->target,
|
||||
backup->sync,
|
||||
|
@ -1782,7 +1789,6 @@ static void blockdev_backup_prepare(BlkTransactionState *common, Error **errp)
|
|||
return;
|
||||
}
|
||||
|
||||
state->bs = blk_bs(blk);
|
||||
state->job = state->bs->job;
|
||||
}
|
||||
|
||||
|
@ -1802,6 +1808,7 @@ static void blockdev_backup_clean(BlkTransactionState *common)
|
|||
BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
|
||||
|
||||
if (state->aio_context) {
|
||||
bdrv_drained_end(state->bs);
|
||||
aio_context_release(state->aio_context);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue