]> sourceware.org Git - lvm2.git/commitdiff
lvconvert: fix regression preventing direct striped conversion
authorHeinz Mauelshagen <heinzm@redhat.com>
Tue, 21 Aug 2018 15:12:33 +0000 (17:12 +0200)
committerHeinz Mauelshagen <heinzm@redhat.com>
Tue, 21 Aug 2018 15:28:56 +0000 (17:28 +0200)
Conversion to striped from raid0/raid0_meta is directly possible.

Fix a regression setting superfluous interim raid5_n conversion type
introduced by commit bd7cdd0b09ba123b064937fddde08daacbed7dab.

Add new test script lvconvert-raid0-striped.sh.

Resolves: rhbz1608067

WHATS_NEW
lib/metadata/raid_manip.c
test/shell/lvconvert-raid0-striped.sh [new file with mode: 0644]

index 0a0b6e925c0a967be4514f13abfca42f3d4b019e..0ea2789fe74756c07a1bdcb25c7280ab18cff51c 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 3.0.0
 =============
+  Fix lvconvert raid0/raid0_meta -> striped regression.
   Fix lvconvert --splitmirror for mirror type (2.02.178).
   Do not pair cache policy and cache metadata format.
   lvconvert: reject conversions on raid1 LVs with split tracked SubLVs
index 931b411e1127dfbbb4700dfda19eba2b13dc7d6b..544152781c65d23f181020ec1760344ef5cbf174 100644 (file)
@@ -6126,6 +6126,9 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
                if (seg_from->area_count == 1)
                        seg_flag = SEG_RAID1;
 
+               else if (seg_is_any_raid0(seg_from) && segtype_is_striped(*segtype))
+                       ;
+
                /* If this is any raid5 conversion request -> enforce raid5_n, because we convert from striped */
                else if (((segtype_is_striped(*segtype) && !segtype_is_any_raid0(*segtype)) || segtype_is_any_raid5(*segtype)) &&
                         !segtype_is_raid5_n(*segtype))
diff --git a/test/shell/lvconvert-raid0-striped.sh b/test/shell/lvconvert-raid0-striped.sh
new file mode 100644 (file)
index 0000000..4521b34
--- /dev/null
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+
+# Copyright (C) 2018 Red Hat, Inc. All rights reserved.
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions
+# of the GNU General Public License v.2.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+SKIP_WITH_LVMPOLLD=1
+
+. lib/inittest
+
+aux have_raid 1 7 0 || skip
+
+aux prepare_vg 3 16
+
+lvcreate -aey --type raid0 -i 3 -l3 -n $lv $vg
+lvconvert -y --type striped $vg/$lv
+check lv_field $vg/$lv segtype "striped"
+vgremove -ff $vg
This page took 0.053858 seconds and 5 git commands to generate.