[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v15 1/9] unblock backup operations in backing file
From: |
Changlong Xie |
Subject: |
[Qemu-devel] [PATCH v15 1/9] unblock backup operations in backing file |
Date: |
Fri, 5 Feb 2016 12:18:00 +0800 |
From: Wen Congyang <address@hidden>
Signed-off-by: Wen Congyang <address@hidden>
Signed-off-by: Changlong Xie <address@hidden>
---
block.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/block.c b/block.c
index a285de5..70ab625 100644
--- a/block.c
+++ b/block.c
@@ -1279,6 +1279,24 @@ void bdrv_set_backing_hd(BlockDriverState *bs,
BlockDriverState *backing_hd)
/* Otherwise we won't be able to commit due to check in bdrv_commit */
bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
bs->backing_blocker);
+ /*
+ * We do backup in 3 ways:
+ * 1. drive backup
+ * The target bs is new opened, and the source is top BDS
+ * 2. blockdev backup
+ * Both the source and the target are top BDSes.
+ * 3. internal backup(used for block replication)
+ * Both the source and the target are backing file
+ *
+ * In case 1, and 2, the backing file is neither the source nor
+ * the target.
+ * In case 3, we will block the top BDS, so there is only one block
+ * job for the top BDS and its backing chain.
+ */
+ bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
+ bs->backing_blocker);
+ bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
+ bs->backing_blocker);
out:
bdrv_refresh_limits(bs, NULL);
}
--
1.9.3
- [Qemu-devel] [PATCH v15 0/9] Block replication for continuous checkpoints, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 2/9] Store parent BDS in BdrvChild, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 4/9] Link backup into block core, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 6/9] auto complete active commit, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 5/9] docs: block replication's description, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 1/9] unblock backup operations in backing file,
Changlong Xie <=
- [Qemu-devel] [PATCH v15 3/9] Backup: clear all bitmap when doing block checkpoint, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 7/9] Introduce new APIs to do replication operation, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 9/9] support replication driver in blockdev-add, Changlong Xie, 2016/02/04
- [Qemu-devel] [PATCH v15 8/9] Implement new driver for block replication, Changlong Xie, 2016/02/04
- Re: [Qemu-devel] [PATCH v15 0/9] Block replication for continuous checkpoints, Changlong Xie, 2016/02/15