mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
Replicator: extend _lv_each_dependency() with dependencies for Replicator devices
This commit is contained in:
parent
651cae3c5c
commit
e86e45f7ea
@ -1,6 +1,7 @@
|
||||
Version 2.02.67 -
|
||||
===============================
|
||||
Add check_replicator_segment() for catching internal replicator errors.
|
||||
Extend _lv_each_dependency() with Replicator dependencies.
|
||||
Add check_replicator_segment() for catching internal Replicator errors.
|
||||
Initial lvm2 support for Replicator metadata handling.
|
||||
Checking open_count in all parents of presuspend_node.
|
||||
Added dm_tree_node_set_presuspend_node() to presuspend child in deactivate.
|
||||
|
@ -2001,6 +2001,8 @@ static int _lv_each_dependency(struct logical_volume *lv,
|
||||
struct lv_segment *lvseg;
|
||||
|
||||
struct logical_volume *deps[] = {
|
||||
(lv->rdevice && lv != lv->rdevice->lv) ? lv->rdevice->lv : 0,
|
||||
(lv->rdevice && lv != lv->rdevice->slog) ? lv->rdevice->slog : 0,
|
||||
lv->snapshot ? lv->snapshot->origin : 0,
|
||||
lv->snapshot ? lv->snapshot->cow : 0 };
|
||||
for (i = 0; i < sizeof(deps) / sizeof(*deps); ++i) {
|
||||
@ -2011,6 +2013,8 @@ static int _lv_each_dependency(struct logical_volume *lv,
|
||||
dm_list_iterate_items(lvseg, &lv->segments) {
|
||||
if (lvseg->log_lv && !fn(lvseg->log_lv, data))
|
||||
return_0;
|
||||
if (lvseg->rlog_lv && !fn(lvseg->rlog_lv, data))
|
||||
return_0;
|
||||
for (s = 0; s < lvseg->area_count; ++s) {
|
||||
if (seg_type(lvseg, s) == AREA_LV && !fn(seg_lv(lvseg,s), data))
|
||||
return_0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user