Blame SOURCES/lvm2-2_02_182-lvconvert-fix-conversion-attempts-to-linear.patch

5e29a5
From 83b93f9f5a72ac67f63e6be2c25ce4b3919c4c84 Mon Sep 17 00:00:00 2001
5e29a5
From: Heinz Mauelshagen <heinzm@redhat.com>
5e29a5
Date: Wed, 22 Aug 2018 16:39:36 +0200
5e29a5
Subject: [PATCH] lvconvert: fix conversion attempts to linear
5e29a5
5e29a5
"lvconvert --type linear RaidLV" on striped and raid4/5/6/10
5e29a5
have to provide the convenient interim layouts.  Fix involves
5e29a5
a cleanup to the convenience type function.
5e29a5
5e29a5
As a result of testing, add missing sync waits to
5e29a5
lvconvert-raid-reshape-linear_to_raid6-single-type.sh.
5e29a5
5e29a5
Resolves: rhbz1447809
5e29a5
(cherry picked from commit e83c4f07ca4a84808178d5d22cba655e5e370cd8)
5e29a5
5e29a5
Conflicts:
5e29a5
	WHATS_NEW
5e29a5
5e29a5
(cherry picked from commit d910f75d89e02e46cd16f9ddbc8e8358c3c2efd3)
5e29a5
---
5e29a5
 WHATS_NEW                                          |   1 +
5e29a5
 lib/metadata/raid_manip.c                          | 145 +++++++++------------
5e29a5
 ...ert-raid-reshape-linear_to_raid6-single-type.sh |   2 +
5e29a5
 3 files changed, 68 insertions(+), 80 deletions(-)
5e29a5
5e29a5
diff --git a/WHATS_NEW b/WHATS_NEW
5e29a5
index e3eee56..92e5c04 100644
5e29a5
--- a/WHATS_NEW
5e29a5
+++ b/WHATS_NEW
5e29a5
@@ -1,5 +1,6 @@
5e29a5
 Version 2.02.182 - 
5e29a5
 ==============================
5e29a5
+  Fix lvconvert conversion attempts to linear.
5e29a5
   Fix lvconvert raid0/raid0_meta -> striped regression.
5e29a5
   Fix lvconvert --splitmirror for mirror type (2.02.178).
5e29a5
   Do not pair cache policy and cache metadata format.
5e29a5
diff --git a/lib/metadata/raid_manip.c b/lib/metadata/raid_manip.c
5e29a5
index 804f78b..d3e3a20 100644
5e29a5
--- a/lib/metadata/raid_manip.c
5e29a5
+++ b/lib/metadata/raid_manip.c
5e29a5
@@ -6120,8 +6120,7 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
5e29a5
 	const struct segment_type *segtype_sav = *segtype;
5e29a5
 
5e29a5
 	/* Linear -> striped request */
5e29a5
-	if (seg_is_striped(seg_from) &&
5e29a5
-	    seg_from->area_count == 1 &&
5e29a5
+	if (seg_is_linear(seg_from) &&
5e29a5
 	    segtype_is_striped(*segtype))
5e29a5
 		;
5e29a5
 	/* Bail out if same RAID level is requested. */
5e29a5
@@ -6130,24 +6129,20 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
5e29a5
 
5e29a5
 	log_debug("Checking LV %s requested %s segment type for convenience",
5e29a5
 		  display_lvname(seg_from->lv), (*segtype)->name);
5e29a5
-	/* striped/raid0 -> raid5/6 */
5e29a5
-	if (seg_is_striped(seg_from) || seg_is_any_raid0(seg_from)) {
5e29a5
-		/* linear -> raid*, interim/first conversion is to raid1 */
5e29a5
-		if (seg_from->area_count == 1)
5e29a5
-			seg_flag = SEG_RAID1;
5e29a5
-
5e29a5
-		else if (seg_is_any_raid0(seg_from) && segtype_is_striped(*segtype))
5e29a5
-			;
5e29a5
-
5e29a5
-		/* If this is any raid5 conversion request -> enforce raid5_n, because we convert from striped */
5e29a5
-		else if (((segtype_is_striped(*segtype) && !segtype_is_any_raid0(*segtype)) || segtype_is_any_raid5(*segtype)) &&
5e29a5
-			 !segtype_is_raid5_n(*segtype))
5e29a5
-			seg_flag = SEG_RAID5_N;
5e29a5
 
5e29a5
-		/* If this is any raid6 conversion request -> enforce raid6_n_6, because we convert from striped */
5e29a5
-		else if (segtype_is_any_raid6(*segtype) && !segtype_is_raid6_n_6(*segtype))
5e29a5
+	/* linear -> */
5e29a5
+	if (seg_is_linear(seg_from)) {
5e29a5
+		seg_flag = SEG_RAID1;
5e29a5
+
5e29a5
+	/* striped/raid0 -> */
5e29a5
+	} else if (seg_is_striped(seg_from) || seg_is_any_raid0(seg_from)) {
5e29a5
+		if (segtype_is_any_raid6(*segtype))
5e29a5
 			seg_flag = SEG_RAID6_N_6;
5e29a5
 
5e29a5
+		if (segtype_is_linear(*segtype) ||
5e29a5
+		    (!segtype_is_raid10(*segtype) && !segtype_is_striped(*segtype)))
5e29a5
+			seg_flag = SEG_RAID5_N;
5e29a5
+
5e29a5
 	/* raid1 -> */
5e29a5
 	} else if (seg_is_raid1(seg_from) && !segtype_is_mirror(*segtype)) {
5e29a5
 		if (seg_from->area_count != 2) {
5e29a5
@@ -6157,85 +6152,68 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
5e29a5
 		}
5e29a5
 
5e29a5
 		if (segtype_is_striped(*segtype) ||
5e29a5
-			   segtype_is_any_raid0(*segtype) ||
5e29a5
-			   segtype_is_raid10(*segtype))
5e29a5
+		    segtype_is_any_raid0(*segtype) ||
5e29a5
+		    segtype_is_raid10(*segtype))
5e29a5
 			seg_flag = SEG_RAID5_N;
5e29a5
 
5e29a5
 		else if (!segtype_is_raid4(*segtype) && !segtype_is_any_raid5(*segtype))
5e29a5
 			seg_flag = SEG_RAID5_LS;
5e29a5
 
5e29a5
-	/* raid4/raid5 -> striped/raid0/raid1/raid6/raid10 */
5e29a5
-	} else if (seg_is_raid4(seg_from) || seg_is_any_raid5(seg_from)) {
5e29a5
-		if ((segtype_is_raid1(*segtype) || segtype_is_linear(*segtype)) && seg_is_raid5_n(seg_from)) {
5e29a5
+	/* raid5* -> */
5e29a5
+	} else if (seg_is_any_raid5(seg_from)) {
5e29a5
+		if (segtype_is_raid1(*segtype) || segtype_is_linear(*segtype)) {
5e29a5
 			if (seg_from->area_count != 2) {
5e29a5
 				log_error("Converting %s LV %s to 2 stripes first.",
5e29a5
 					  lvseg_name(seg_from), display_lvname(seg_from->lv));
5e29a5
 				*new_image_count = 2;
5e29a5
-				seg_flag = SEG_RAID5_N;
5e29a5
+				*segtype = seg_from->segtype;
5e29a5
+				seg_flag = 0;
5e29a5
 			} else
5e29a5
 				seg_flag = SEG_RAID1;
5e29a5
 
5e29a5
-		} else if (segtype_is_raid1(*segtype) && seg_from->area_count != 2) {
5e29a5
-			log_error("Convert %s LV %s to 2 stripes first (i.e. --stripes 1).",
5e29a5
-				  lvseg_name(seg_from), display_lvname(seg_from->lv));
5e29a5
-			return 0;
5e29a5
-
5e29a5
-		} else if (seg_is_raid4(seg_from) &&
5e29a5
-		         (segtype_is_linear(*segtype) || segtype_is_any_raid5(*segtype)) &&
5e29a5
-			 !segtype_is_raid5_n(*segtype))
5e29a5
-			seg_flag = SEG_RAID5_N;
5e29a5
+		} else if (segtype_is_any_raid6(*segtype)) {
5e29a5
+			if (seg_from->area_count < 4) {
5e29a5
+				if (*stripes > 3)
5e29a5
+					*new_image_count = *stripes + seg_from->segtype->parity_devs;
5e29a5
+				else
5e29a5
+					*new_image_count = 4;
5e29a5
 
5e29a5
-		else if (seg_is_raid5_n(seg_from) && seg_from->area_count == 2) {
5e29a5
-			if (*stripes >= 2) {
5e29a5
+				*segtype = seg_from->segtype;
5e29a5
 				log_error("Converting %s LV %s to %u stripes first.",
5e29a5
-					  lvseg_name(seg_from), display_lvname(seg_from->lv), *stripes);
5e29a5
+					  lvseg_name(seg_from), display_lvname(seg_from->lv), *new_image_count);
5e29a5
+
5e29a5
+			} else
5e29a5
+				seg_flag = _raid_seg_flag_5_to_6(seg_from);
5e29a5
+
5e29a5
+		} else if (segtype_is_striped(*segtype) || segtype_is_raid10(*segtype)) {
5e29a5
+			int change = 0;
5e29a5
+
5e29a5
+			if (!seg_is_raid5_n(seg_from)) {
5e29a5
+				seg_flag = SEG_RAID5_N;
5e29a5
+
5e29a5
+			} else if (*stripes > 2 && *stripes != seg_from->area_count - seg_from->segtype->parity_devs) {
5e29a5
+				change = 1;
5e29a5
 				*new_image_count = *stripes + seg_from->segtype->parity_devs;
5e29a5
 				seg_flag = SEG_RAID5_N;
5e29a5
-			} else {
5e29a5
-				log_error("Convert %s LV %s to minimum 3 stripes first (i.e. --stripes 2).",
5e29a5
-					  lvseg_name(seg_from), display_lvname(seg_from->lv));
5e29a5
-				return 0;
5e29a5
-			}
5e29a5
-		} else if (seg_is_any_raid5(seg_from) &&
5e29a5
-		         (segtype_is_linear(*segtype) || segtype_is_raid4(*segtype)) &&
5e29a5
-			 !segtype_is_raid5_n(*segtype))
5e29a5
-			seg_flag = SEG_RAID5_N;
5e29a5
 
5e29a5
-		else if (segtype_is_raid10(*segtype)) {
5e29a5
-			if (seg_from->area_count < 3) {
5e29a5
-				if (*stripes >= 2) {
5e29a5
-					log_error("Converting %s LV %s to %u stripes first.",
5e29a5
-						  lvseg_name(seg_from), display_lvname(seg_from->lv), *stripes);
5e29a5
-					*new_image_count = *stripes + seg_from->segtype->parity_devs;
5e29a5
-					seg_flag = SEG_RAID5_N;
5e29a5
-				} else {
5e29a5
-					log_error("Convert %s LV %s to minimum 3 stripes first (i.e. --stripes 2).",
5e29a5
-						  lvseg_name(seg_from), display_lvname(seg_from->lv));
5e29a5
-					return 0;
5e29a5
-				}
5e29a5
-			} else
5e29a5
-				seg_flag = seg_is_raid5_n(seg_from) ? SEG_RAID0_META : SEG_RAID5_N;
5e29a5
+			} else if (seg_from->area_count < 3) {
5e29a5
+				change = 1;
5e29a5
+				*new_image_count = 3;
5e29a5
+				seg_flag = SEG_RAID5_N;
5e29a5
 
5e29a5
-		} else if (segtype_is_any_raid6(*segtype)) {
5e29a5
-			if (seg_from->area_count < 4 &&
5e29a5
-			    seg_is_any_raid5(seg_from)) {
5e29a5
-				if (*stripes >= 3) {
5e29a5
-					log_error("Converting %s LV %s to %u stripes first.",
5e29a5
-						  lvseg_name(seg_from), display_lvname(seg_from->lv), *stripes);
5e29a5
-					*new_image_count = *stripes + seg_from->segtype->parity_devs;
5e29a5
-					seg_flag = SEG_RAID5_LS;
5e29a5
-				} else {
5e29a5
-					log_error("Convert %s LV %s to minimum 4 stripes first (i.e. --stripes 3).",
5e29a5
-						  lvseg_name(seg_from), display_lvname(seg_from->lv));
5e29a5
-					return 0;
5e29a5
-				}
5e29a5
+			} else if (!segtype_is_striped(*segtype))
5e29a5
+				seg_flag = SEG_RAID0_META;
5e29a5
 
5e29a5
-			} else if (seg_is_raid4(seg_from) && !segtype_is_raid6_n_6(*segtype))
5e29a5
-				seg_flag = SEG_RAID6_N_6;
5e29a5
-			else
5e29a5
-				seg_flag = _raid_seg_flag_5_to_6(seg_from);
5e29a5
+			if (change)
5e29a5
+				log_error("Converting %s LV %s to %u stripes first.",
5e29a5
+					  lvseg_name(seg_from), display_lvname(seg_from->lv), *new_image_count);
5e29a5
 		}
5e29a5
 
5e29a5
+	/* raid4 -> !raid4/raid5* */
5e29a5
+	} else if (seg_is_raid4(seg_from) &&
5e29a5
+		   !segtype_is_raid4(*segtype) && !segtype_is_any_raid5(*segtype)) {
5e29a5
+		seg_flag = SEG_RAID5_N;
5e29a5
+
5e29a5
 	/* raid6 -> striped/raid0/raid5/raid10 */
5e29a5
 	} else if (seg_is_any_raid6(seg_from)) {
5e29a5
 		if (segtype_is_raid1(*segtype)) {
5e29a5
@@ -6247,6 +6225,9 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
5e29a5
 		} else if (segtype_is_any_raid10(*segtype)) {
5e29a5
 			seg_flag = seg_is_raid6_n_6(seg_from) ? SEG_RAID0_META : SEG_RAID6_N_6;
5e29a5
 
5e29a5
+		} else if (segtype_is_linear(*segtype)) {
5e29a5
+			seg_flag = seg_is_raid6_n_6(seg_from) ? SEG_RAID5_N : SEG_RAID6_N_6;
5e29a5
+
5e29a5
 		} else if (segtype_is_striped(*segtype) || segtype_is_any_raid0(*segtype)) {
5e29a5
 			if (!seg_is_raid6_n_6(seg_from))
5e29a5
 				seg_flag = SEG_RAID6_N_6;
5e29a5
@@ -6277,12 +6258,16 @@ static int _set_convenient_raid145610_segtype_to(const struct lv_segment *seg_fr
5e29a5
 			return 0;
5e29a5
 		}
5e29a5
 
5e29a5
-	/* raid10 -> ... */
5e29a5
-	} else if (seg_is_raid10(seg_from) &&
5e29a5
-		   !segtype_is_striped(*segtype) &&
5e29a5
-		   !segtype_is_any_raid0(*segtype))
5e29a5
-		seg_flag = SEG_RAID0_META;
5e29a5
+	} else if (seg_is_raid10(seg_from)) {
5e29a5
+		if (segtype_is_linear(*segtype) ||
5e29a5
+		    (!segtype_is_striped(*segtype) &&
5e29a5
+		    !segtype_is_any_raid0(*segtype))) {
5e29a5
+			seg_flag = SEG_RAID0_META;
5e29a5
+		}
5e29a5
+	}
5e29a5
 
5e29a5
+
5e29a5
+	/* raid10 -> ... */
5e29a5
 	if (seg_flag) {
5e29a5
 		if (!(*segtype = get_segtype_from_flag(cmd, seg_flag)))
5e29a5
 			return_0;
5e29a5
diff --git a/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh b/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh
5e29a5
index f01e7ef..05cb616 100644
5e29a5
--- a/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh
5e29a5
+++ b/test/shell/lvconvert-raid-reshape-linear_to_raid6-single-type.sh
5e29a5
@@ -78,6 +78,7 @@ check lv_first_seg_field $vg/$lv data_stripes 3
5e29a5
 check lv_first_seg_field $vg/$lv stripesize "64.00k"
5e29a5
 check lv_first_seg_field $vg/$lv regionsize "128.00k"
5e29a5
 check lv_first_seg_field $vg/$lv reshape_len_le 0
5e29a5
+aux wait_for_sync $vg $lv
5e29a5
 
5e29a5
 # Convert raid6_ls_6 -> raid6(_zr) (reshape)
5e29a5
 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
5e29a5
@@ -88,6 +89,7 @@ check lv_first_seg_field $vg/$lv data_stripes 3
5e29a5
 check lv_first_seg_field $vg/$lv stripesize "64.00k"
5e29a5
 check lv_first_seg_field $vg/$lv regionsize "128.00k"
5e29a5
 check lv_first_seg_field $vg/$lv reshape_len_le 10
5e29a5
+aux wait_for_sync $vg $lv
5e29a5
 
5e29a5
 # Remove reshape space
5e29a5
 lvconvert -y --type raid6 --stripes 3 --stripesize 64K --regionsize 128K $vg/$lv
5e29a5
-- 
5e29a5
1.8.3.1
5e29a5