diff options
author | Wen Congyang <wency@cn.fujitsu.com> | 2015-07-17 10:12:22 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2015-09-02 14:56:39 +0100 |
commit | e12f3784097a26a1ba51be420f41038b4c0ae5d1 (patch) | |
tree | 14f552aa3fac589c508d646f93243a942698c7fb /include | |
parent | f307371217c42d62015b8d83300a11cd9d3966f3 (diff) | |
download | qemu-e12f3784097a26a1ba51be420f41038b4c0ae5d1.zip qemu-e12f3784097a26a1ba51be420f41038b4c0ae5d1.tar.gz qemu-e12f3784097a26a1ba51be420f41038b4c0ae5d1.tar.bz2 |
block: more check for replaced node
We use mirror+replace to fix quorum's broken child. bs/s->common.bs
is quorum, and to_replace is the broken child. The new child is target_bs.
Without this patch, the replace node can be any node, and it can be
top BDS with BB, or another quorum's child. We just check if the broken
child is part of the quorum BDS in this patch.
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Message-id: 55A86486.1000404@cn.fujitsu.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/block.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/block/block.h b/include/block/block.h index 37916f7..608cd4e 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -317,7 +317,8 @@ bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, bool bdrv_is_first_non_filter(BlockDriverState *candidate); /* check if a named node can be replaced when doing drive-mirror */ -BlockDriverState *check_to_replace_node(const char *node_name, Error **errp); +BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, + const char *node_name, Error **errp); /* async block I/O */ typedef void BlockDriverDirtyHandler(BlockDriverState *bs, int64_t sector, |