From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsSyQ-00053x-SC for qemu-devel@nongnu.org; Wed, 13 May 2015 05:29:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YsSyP-0001sc-Dw for qemu-devel@nongnu.org; Wed, 13 May 2015 05:29:06 -0400 From: Fam Zheng Date: Wed, 13 May 2015 17:28:17 +0000 Message-Id: <1431538099-3286-10-git-send-email-famz@redhat.com> In-Reply-To: <1431538099-3286-1-git-send-email-famz@redhat.com> References: <1431538099-3286-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH v2 09/11] blockdev: Block device IO during drive-backup transaction List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , qemu-block@nongnu.org, jcody@redhat.com, armbru@redhat.com, mreitz@redhat.com, Stefan Hajnoczi , pbonzini@redhat.com Signed-off-by: Fam Zheng --- blockdev.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/blockdev.c b/blockdev.c index 923fc90..ae52d27 100644 --- a/blockdev.c +++ b/blockdev.c @@ -1575,6 +1575,7 @@ typedef struct DriveBackupState { BlockDriverState *bs; AioContext *aio_context; BlockJob *job; + Error *blocker; } DriveBackupState; static void drive_backup_prepare(BlkTransactionState *common, Error **errp) @@ -1599,6 +1600,9 @@ static void drive_backup_prepare(BlkTransactionState *common, Error **errp) state->aio_context = bdrv_get_aio_context(bs); aio_context_acquire(state->aio_context); + state->bs = bs; + error_setg(&state->blocker, "drive-backup in progress"); + bdrv_op_block(bs, BLOCK_OP_TYPE_DEVICE_IO, state->blocker); qmp_drive_backup(backup->device, backup->target, backup->has_format, backup->format, backup->sync, @@ -1613,7 +1617,6 @@ static void drive_backup_prepare(BlkTransactionState *common, Error **errp) return; } - state->bs = bs; state->job = state->bs->job; } @@ -1632,6 +1635,10 @@ static void drive_backup_clean(BlkTransactionState *common) { DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); + if (state->bs) { + bdrv_op_unblock(state->bs, BLOCK_OP_TYPE_DEVICE_IO, state->blocker); + error_free(state->blocker); + } if (state->aio_context) { aio_context_release(state->aio_context); } -- 2.4.0