2012-06-26 18:44:54 +04:00
#!/bin/sh
# Copyright (C) 2012 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2014-06-06 19:40:04 +04:00
. lib/inittest
2012-06-26 18:44:54 +04:00
2015-05-09 02:59:18 +03:00
test -e LOCAL_LVMPOLLD && skip
2014-05-24 00:35:05 +04:00
aux have_raid 1 3 0 || skip
2012-07-17 19:50:21 +04:00
2014-03-18 13:26:42 +04:00
aux prepare_pvs 6 80
vgcreate -s 256K $vg $( cat DEVICES)
2012-06-26 18:44:54 +04:00
for deactivate in true false; do
2013-06-15 13:21:03 +04:00
# Extend and reduce a 2-way RAID1
2012-06-26 18:44:54 +04:00
lvcreate --type raid1 -m 1 -l 2 -n $lv1 $vg
2013-06-15 13:21:03 +04:00
test $deactivate && lvchange -an $vg /$lv1
2012-06-26 18:44:54 +04:00
lvresize -l +2 $vg /$lv1
2012-08-25 01:20:53 +04:00
should lvresize -y -l -2 $vg /$lv1
2012-06-26 18:44:54 +04:00
#check raid_images_contiguous $vg $lv1
2013-06-15 13:21:03 +04:00
# Extend and reduce 3-striped RAID 4/5/6
for i in 4 5 6 ; do
lvcreate --type raid$i -i 3 -l 3 -n $lv2 $vg
2012-06-26 18:44:54 +04:00
2013-06-15 13:21:03 +04:00
test $deactivate && lvchange -an $vg /$lv2
2012-06-26 18:44:54 +04:00
2013-06-15 13:21:03 +04:00
lvresize -l +3 $vg /$lv2
2012-06-26 18:44:54 +04:00
#check raid_images_contiguous $vg $lv1
2013-06-15 13:21:03 +04:00
should lvresize -y -l -3 $vg /$lv2
2012-06-26 18:44:54 +04:00
#check raid_images_contiguous $vg $lv1
lvremove -ff $vg
done
done
2013-09-25 06:32:53 +04:00
# Bug 1005434
# Ensure extend is contiguous
2014-03-20 02:32:25 +04:00
lvcreate --type raid4 -l 2 -i 2 -n $lv1 $vg " $dev4 " " $dev5 " " $dev6 "
2013-09-25 06:32:53 +04:00
lvextend -l +2 --alloc contiguous $vg /$lv1
2014-03-18 13:26:42 +04:00
check lv_tree_on $vg $lv1 " $dev4 " " $dev5 " " $dev6 "
2013-09-25 06:32:53 +04:00
2014-03-18 13:26:42 +04:00
vgremove -f $vg