[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH v4 01/25] block/mirror: Small absolute-paths simplif
From: |
Max Reitz |
Subject: |
[Qemu-block] [PATCH v4 01/25] block/mirror: Small absolute-paths simplification |
Date: |
Wed, 11 Jan 2017 19:14:08 +0100 |
When invoking drive-mirror in absolute-paths mode, the target's backing
BDS is assigned to it in mirror_complete(). The current logic only does
so if the target does not have that backing BDS already; but it actually
cannot have a backing BDS at all (the BDS is opened with O_NO_BACKING in
qmp_drive_mirror()), so just assert that and assign the new backing BDS
unconditionally.
Signed-off-by: Max Reitz <address@hidden>
Reviewed-by: Alberto Garcia <address@hidden>
---
block/mirror.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/block/mirror.c b/block/mirror.c
index 301ba9219a..4ece624549 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -888,9 +888,9 @@ static void mirror_complete(BlockJob *job, Error **errp)
if (s->backing_mode == MIRROR_SOURCE_BACKING_CHAIN) {
BlockDriverState *backing = s->is_none_mode ? src : s->base;
- if (backing_bs(target) != backing) {
- bdrv_set_backing_hd(target, backing);
- }
+
+ assert(!target->backing);
+ bdrv_set_backing_hd(target, backing);
}
s->should_complete = true;
--
2.11.0
- [Qemu-block] [PATCH v4 00/25] block: Fix some filename generation issues, Max Reitz, 2017/01/11
- [Qemu-block] [PATCH v4 01/25] block/mirror: Small absolute-paths simplification,
Max Reitz <=
- [Qemu-block] [PATCH v4 02/25] block: Use children list in bdrv_refresh_filename, Max Reitz, 2017/01/11
- [Qemu-block] [PATCH v4 03/25] block: Add BDS.backing_overridden, Max Reitz, 2017/01/11
- [Qemu-block] [PATCH v4 04/25] block: Respect backing bs in bdrv_refresh_filename, Max Reitz, 2017/01/11
- [Qemu-block] [PATCH v4 05/25] block: Make path_combine() return the path, Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 06/25] block: bdrv_get_full_backing_filename_from_...'s ret. val., Max Reitz, 2017/01/16
- [Qemu-block] [PATCH v4 07/25] block: bdrv_get_full_backing_filename's ret. val., Max Reitz, 2017/01/16