From b9ac4b0cf8a2dbdef1aa8cb18b8f06a67654215c Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Wed, 18 Nov 2009 17:20:18 +0000 Subject: Never activate hidden volumes directly in vgchange. All hidden (not visible) volumes should be activated through other visible volumes. (There are already exceptions like snapshot, mirror log and image, which should be cleaned one day...) This solves problems for future types of hidden volumes, which can have special meaning and must not be activated implicitly (e.g. key store volume). --- tools/vgchange.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/vgchange.c') diff --git a/tools/vgchange.c b/tools/vgchange.c index d6af3b00..80ac6e73 100644 --- a/tools/vgchange.c +++ b/tools/vgchange.c @@ -61,6 +61,9 @@ static int _activate_lvs_in_vg(struct cmd_context *cmd, dm_list_iterate_items(lvl, &vg->lvs) { lv = lvl->lv; + if (!lv_is_visible(lv)) + continue; + /* Only request activation of snapshot origin devices */ if ((lv->status & SNAPSHOT) || lv_is_cow(lv)) continue; -- cgit