2016-08-24 19:22:34 +03:00
#!/bin/bash
# Copyright (C) 2016 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_LVMLOCKD = 1
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
aux have_raid 1 3 2 || skip
aux prepare_vg 8
# Delay 1st leg so that rebuilding status characters can be read
2016-09-09 21:24:48 +03:00
for d in $( < DEVICES)
2016-08-25 02:36:13 +03:00
do
2016-09-09 21:24:48 +03:00
aux delay_dev " $d " 0 10 $( get first_extent_sector " $d " )
2016-08-25 02:36:13 +03:00
done
2016-08-24 19:22:34 +03:00
# rhbz 1064592
##############################################
# Create an 8-way striped raid10 with 4 mirror
# groups and rebuild selected PVs.
lvcreate --type raid10 -m 1 -i 4 -l 2 -n $lv1 $vg
aux wait_for_sync $vg $lv1
# Rebuild 1st and 2nd device would rebuild a
# whole mirror group and needs to be rejected.
not lvchange --yes --rebuild " $dev1 " --rebuild " $dev2 " $vg /$lv1
2016-09-12 16:44:09 +03:00
not check raid_leg_status $vg $lv1 "aAaAAAAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild 1st and 3nd device from different mirror groups is fine.
lvchange --yes --rebuild " $dev1 " --rebuild " $dev3 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "aAaAAAAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild devices 1, 3, 6 from different mirror groups is fine.
lvchange --yes --rebuild " $dev1 " --rebuild " $dev3 " --rebuild " $dev6 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "aAaAAaAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild devices 1, 3, 5 and 6 with 5+6 being
# being a whole mirror group needs to be rejected.
not lvchange --yes --rebuild " $dev1 " --rebuild " $dev3 " --rebuild " $dev6 " --rebuild " $dev5 " $vg /$lv1
2016-09-12 16:44:09 +03:00
not check raid_leg_status $vg $lv1 "aAaAaaAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild devices 1, 3, 5 and 7 from different mirror groups is fine.
lvchange --yes --rebuild " $dev1 " --rebuild " $dev3 " --rebuild " $dev5 " --rebuild " $dev7 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "aAaAaAaA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild devices 2, 4, 6 and 8 from different mirror groups is fine.
lvchange --yes --rebuild " $dev2 " --rebuild " $dev4 " --rebuild " $dev6 " --rebuild " $dev8 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "AaAaAaAa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
##############################################
# Create an 8-legged raid1 and rebuild selected PVs
lvremove --yes $vg /$lv1
lvcreate --yes --type raid1 -m 7 -l 2 -n $lv1 $vg
aux wait_for_sync $vg $lv1
# Rebuilding all raid1 legs needs to be rejected.
not lvchange --yes --rebuild " $dev1 " --rebuild " $dev2 " --rebuild " $dev3 " --rebuild " $dev4 " \
--rebuild " $dev5 " --rebuild " $dev6 " --rebuild " $dev7 " --rebuild " $dev8 " $vg /$lv1
2016-09-12 16:44:09 +03:00
not check raid_leg_status $vg $lv1 "aaaaaaaa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuilding all but the raid1 master leg is fine.
lvchange --yes --rebuild " $dev2 " --rebuild " $dev3 " --rebuild " $dev4 " \
--rebuild " $dev5 " --rebuild " $dev6 " --rebuild " $dev7 " --rebuild " $dev8 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "Aaaaaaaa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuilding the raid1 master leg is fine.
lvchange --yes --rebuild " $dev1 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "aAAAAAAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuild legs on devices 2, 4, 6 and 8 is fine.
lvchange --yes --rebuild " $dev2 " --rebuild " $dev4 " --rebuild " $dev6 " --rebuild " $dev8 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "AaAaAaAa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
##############################################
# Create an 6-legged raid6 and rebuild selected PVs
lvremove --yes $vg /$lv1
lvcreate --yes --type raid6 -i 4 -l 2 -n $lv1 $vg
aux wait_for_sync $vg $lv1
# Rebuilding all raid6 stripes needs to be rejected.
not lvchange --yes --rebuild " $dev1 " --rebuild " $dev2 " --rebuild " $dev3 " \
--rebuild " $dev4 " --rebuild " $dev5 " --rebuild " $dev6 " $vg /$lv1
2016-09-12 16:44:09 +03:00
not check raid_leg_status $vg $lv1 "aaaaaa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuilding more than 2 raid6 stripes needs to be rejected.
not lvchange --yes --rebuild " $dev2 " --rebuild " $dev4 " --rebuild " $dev6 " $vg /$lv1
2016-09-12 16:44:09 +03:00
not check raid_leg_status $vg $lv1 "AaAaAa"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuilding any 1 raid6 stripe is fine.
lvchange --yes --rebuild " $dev2 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "AaAAAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
lvchange --yes --rebuild " $dev5 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "AAAAaA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
# Rebuilding any 2 raid6 stripes is fine.
lvchange --yes --rebuild " $dev2 " --rebuild " $dev4 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "AaAaAA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
lvchange --yes --rebuild " $dev1 " --rebuild " $dev5 " $vg /$lv1
2016-09-12 16:44:09 +03:00
check raid_leg_status_is $vg $lv1 "aAAAaA"
2016-08-24 19:22:34 +03:00
aux wait_for_sync $vg $lv1
vgremove -ff $vg