2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2017-02-24 07:16:21 +03:00
# Copyright (C) 2017 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, MA2110-1301 USA
SKIP_WITH_LVMLOCKD = 1
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
which mkfs.ext4 || skip
2017-06-23 15:52:34 +03:00
aux have_raid 1 12 0 || skip
2017-04-20 22:05:07 +03:00
# Temporarily skip reshape tests on single-core CPUs until there's a fix for
# https://bugzilla.redhat.com/1443999 - AGK 2017/04/20
2017-04-21 02:21:24 +03:00
aux have_multi_core || skip
2017-02-24 07:16:21 +03:00
aux prepare_vg 5
#
# Test single step linear -> striped conversion
#
# Create 4-way striped LV
lvcreate -aey -i 4 -I 32k -L 16M -n $lv1 $vg
check lv_field $vg /$lv1 segtype "striped"
2017-03-01 20:50:35 +03:00
check lv_field $vg /$lv1 data_stripes 4
2017-02-24 07:16:21 +03:00
check lv_field $vg /$lv1 stripes 4
check lv_field $vg /$lv1 stripesize "32.00k"
2017-03-16 23:17:58 +03:00
check lv_field $vg /$lv1 reshape_len_le ""
2017-02-24 07:16:21 +03:00
echo y| mkfs -t ext4 $DM_DEV_DIR /$vg /$lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
# Convert striped -> raid5(_n)
lvconvert -y --ty raid5 -R 128k $vg /$lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
check lv_field $vg /$lv1 segtype "raid5_n"
2017-03-01 20:50:35 +03:00
check lv_field $vg /$lv1 data_stripes 4
2017-02-24 07:16:21 +03:00
check lv_field $vg /$lv1 stripes 5
check lv_field $vg /$lv1 stripesize "32.00k"
check lv_field $vg /$lv1 regionsize "128.00k"
2017-03-16 23:17:58 +03:00
check lv_field $vg /$lv1 reshape_len_le 0
2017-02-24 07:16:21 +03:00
aux wait_for_sync $vg $lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
# Extend raid5_n LV by factor 4 to keep size once linear
lvresize -y -L 64 $vg /$lv1
2017-03-01 20:50:35 +03:00
check lv_field $vg /$lv1 segtype "raid5_n"
check lv_field $vg /$lv1 data_stripes 4
check lv_field $vg /$lv1 stripes 5
check lv_field $vg /$lv1 stripesize "32.00k"
check lv_field $vg /$lv1 regionsize "128.00k"
2017-03-16 23:17:58 +03:00
check lv_field $vg /$lv1 reshape_len_le "0"
2017-02-24 07:16:21 +03:00
aux wait_for_sync $vg $lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
# Convert raid5_n LV to 1 stripe (2 legs total),
# 64k stripesize and 1024k regionsize
# FIXME: "--type" superfluous (cli fix needed)
lvconvert -y -f --ty raid5_n --stripes 1 -I 64k -R 1024k $vg /$lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
check lv_first_seg_field $vg /$lv1 segtype "raid5_n"
2017-03-01 20:50:35 +03:00
check lv_first_seg_field $vg /$lv1 data_stripes 1
2017-02-24 07:16:21 +03:00
check lv_first_seg_field $vg /$lv1 stripes 5
check lv_first_seg_field $vg /$lv1 stripesize "64.00k"
check lv_first_seg_field $vg /$lv1 regionsize "1.00m"
2017-03-16 23:17:58 +03:00
check lv_first_seg_field $vg /$lv1 reshape_len_le 10
2017-03-01 20:50:35 +03:00
# for slv in {0..4}
# do
2017-03-16 23:17:58 +03:00
# check lv_first_seg_field $vg/${lv1}_rimage_${slv} reshape_len_le 2
2017-03-01 20:50:35 +03:00
# done
2017-02-24 07:16:21 +03:00
aux wait_for_sync $vg $lv1 1
fsck -fn $DM_DEV_DIR /$vg /$lv1
# Remove the now freed legs
2017-05-16 18:51:58 +03:00
lvconvert -y --stripes 1 $vg /$lv1
2017-02-24 07:16:21 +03:00
check lv_first_seg_field $vg /$lv1 segtype "raid5_n"
2017-03-01 20:50:35 +03:00
check lv_first_seg_field $vg /$lv1 data_stripes 1
2017-02-24 07:16:21 +03:00
check lv_first_seg_field $vg /$lv1 stripes 2
check lv_first_seg_field $vg /$lv1 stripesize "64.00k"
check lv_first_seg_field $vg /$lv1 regionsize "1.00m"
2017-03-16 23:17:58 +03:00
check lv_first_seg_field $vg /$lv1 reshape_len_le 4
2017-02-24 07:16:21 +03:00
# Convert raid5_n to raid1
lvconvert -y --type raid1 $vg /$lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
check lv_first_seg_field $vg /$lv1 segtype "raid1"
2017-03-01 20:50:35 +03:00
check lv_first_seg_field $vg /$lv1 data_stripes 2
2017-02-24 07:16:21 +03:00
check lv_first_seg_field $vg /$lv1 stripes 2
check lv_first_seg_field $vg /$lv1 stripesize "0"
check lv_first_seg_field $vg /$lv1 regionsize "1.00m"
2017-03-16 23:17:58 +03:00
check lv_first_seg_field $vg /$lv1 reshape_len_le ""
2017-02-24 07:16:21 +03:00
2017-03-01 20:50:35 +03:00
# Convert raid5_n -> linear
2017-02-24 07:16:21 +03:00
lvconvert -y --type linear $vg /$lv1
fsck -fn $DM_DEV_DIR /$vg /$lv1
check lv_first_seg_field $vg /$lv1 segtype "linear"
2017-03-01 20:50:35 +03:00
check lv_first_seg_field $vg /$lv1 data_stripes 1
2017-02-24 07:16:21 +03:00
check lv_first_seg_field $vg /$lv1 stripes 1
check lv_first_seg_field $vg /$lv1 stripesize "0"
check lv_first_seg_field $vg /$lv1 regionsize "0"
2017-03-16 23:17:58 +03:00
check lv_first_seg_field $vg /$lv1 reshape_len_le ""
2017-02-24 07:16:21 +03:00
vgremove -ff $vg