Gitweb: http://git.fedorahosted.org/git/?p=lvm2.git;a=commitdiff;h=274eae592fc0d178…
Commit: 274eae592fc0d1787e5794c8d4f6d17c8a595659
Parent: 1c83c159631dd9be40d47da168ce1c77423798b9
Author: Zdenek Kabelac <zkabelac(a)redhat.com>
AuthorDate: Fri May 31 12:48:37 2013 +0200
Committer: Zdenek Kabelac <zkabelac(a)redhat.com>
CommitterDate: Fri May 31 21:42:32 2013 +0200
tests: skip if the system already uses tested minor
---
test/shell/activate-minor.sh | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/test/shell/activate-minor.sh b/test/shell/activate-minor.sh
index 5433f01..3726faa 100644
--- a/test/shell/activate-minor.sh
+++ b/test/shell/activate-minor.sh
@@ -11,6 +11,10 @@
. lib/test
+# Just skip this test if minor is already in use...
+dmsetup info | tee info
+egrep "^Major, minor: *[0-9]+, 123" info && skip
+
aux prepare_vg 2
lvcreate -a n --zero n -l 1 -n foo $vg
lvchange $vg/foo -My --major=255 --minor=123
Gitweb: http://git.fedorahosted.org/git/?p=lvm2.git;a=commitdiff;h=31f3274ed8a81cbf…
Commit: 31f3274ed8a81cbf6c25c7bc6307e58894f436a9
Parent: e5baaf4ac9f2de39558b23606432ebeed483c99a
Author: Zdenek Kabelac <zkabelac(a)redhat.com>
AuthorDate: Fri May 31 19:10:07 2013 +0200
Committer: Zdenek Kabelac <zkabelac(a)redhat.com>
CommitterDate: Fri May 31 21:42:31 2013 +0200
mirror: implement check for remotely active LV
If the mirror is active exclusively and locally, then we may proceed.
---
lib/metadata/mirror.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/lib/metadata/mirror.c b/lib/metadata/mirror.c
index f23bee3..f4f7b66 100644
--- a/lib/metadata/mirror.c
+++ b/lib/metadata/mirror.c
@@ -2065,10 +2065,11 @@ int lv_add_mirrors(struct cmd_context *cmd, struct logical_volume *lv,
}
if (vg_is_clustered(lv->vg)) {
- /* FIXME: review check of lv_is_active_remotely */
/* FIXME: move this test out of this function */
/* Skip test for pvmove mirrors, it can use local mirror */
if (!(lv->status & (PVMOVE | LOCKED)) &&
+ lv_is_active(lv) &&
+ !lv_is_active_exclusive_locally(lv) && /* lv_is_active_remotely */
!_cluster_mirror_is_available(lv)) {
log_error("Shared cluster mirrors are not available.");
return 0;