summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2019-06-19 10:40:37 -0500
committerDavid Teigland <teigland@redhat.com>2019-06-19 10:40:37 -0500
commitf3a87a2c2e339328ea4d7448f43d5317806a6b24 (patch)
treee126b7b5c713aaaede353bbe50f840248984e7d7
parent1727df7c98b749be90a5790d3d9858a012f687f6 (diff)
downloadlvm2-f3a87a2c2e339328ea4d7448f43d5317806a6b24.tar.gz
Revert "lvconvert: disable linear to mirror of active LV in cluster VG"
This reverts commit 8623e336513c6ac6fcb24aa7e2ef10b8a3a36c59. The problem this was avoiding now seems to be fixed by commit d6bce036155ae973c869bdce3ca5f824f933f599 mirror: fix monitoring change
-rw-r--r--tools/lvconvert.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/lvconvert.c b/tools/lvconvert.c
index fcbbd2640..bc666c0c9 100644
--- a/tools/lvconvert.c
+++ b/tools/lvconvert.c
@@ -864,17 +864,6 @@ static int _lvconvert_mirrors_aux(struct cmd_context *cmd,
/* FIXME Share code with lvcreate */
/*
- * Avoid bug 1711427 in which an exclusively active linear LV in a
- * clustered VG, when upconverted to a mirror, will mistakenly use
- * a userspace/cmirror log in _add_log() beause laopts.exclusive is
- * not set.
- */
- if (vg_is_clustered(lv->vg) && lv_is_active(lv)) {
- log_error("Cannot convert active LV to mirror in clustered VG.");
- return 0;
- }
-
- /*
* FIXME should we give not only pvh, but also all PVs
* currently taken by the mirror? Would make more sense from
* user perspective.