mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
7d6cf12554
The MD raid6 personality being used to drive lvm raid6 LVs does read-modify-write updates to any stripes and thus relies on correct P and Q Syndromes being written during initial synchronization or it may fail reconstructing proper user data in case of SubLVs failing. We may not allow the '--nosync' option on creation of raid6 LVs for that reason. Update/fix 'man lvcreate' in that regard. add lvcreate-raid-nosync.sh test script. - Resolves rhbz1358532
86 lines
2.4 KiB
Bash
86 lines
2.4 KiB
Bash
#!/bin/sh
|
|
# 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 7 0 || skip
|
|
|
|
aux prepare_vg 6
|
|
|
|
|
|
# Delay 1st leg so that rebuilding status characters
|
|
# can be read before resync finished too quick.
|
|
aux delay_dev "$dev1" 0 1
|
|
|
|
# raid0/raid0_meta don't support resynchronization
|
|
for r in raid0 raid0_meta
|
|
do
|
|
lvcreate --yes --type raid0 -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "AAA"
|
|
lvremove --yes $vg/$lv1
|
|
done
|
|
|
|
# raid1 supports resynchronization
|
|
lvcreate --yes --type raid1 -m 2 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "aaa"
|
|
aux wait_for_sync $vg $lv1
|
|
aux check_status_chars $vg $lv1 "AAA"
|
|
lvremove --yes $vg/$lv1
|
|
|
|
# raid1 supports --nosync
|
|
lvcreate --yes --type raid1 --nosync -m 2 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "AAA"
|
|
lvremove --yes $vg/$lv1
|
|
|
|
for r in raid4 raid5
|
|
do
|
|
# raid4/5 support resynchronization
|
|
lvcreate --yes --type $r -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "aaaa"
|
|
aux wait_for_sync $vg $lv1
|
|
aux check_status_chars $vg $lv1 "AAAA"
|
|
lvremove --yes $vg/$lv1
|
|
|
|
# raid4/5 support --nosync
|
|
lvcreate --yes --type $r --nosync -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "AAAA"
|
|
lvremove --yes $vg/$lv1
|
|
done
|
|
|
|
# raid6 supports resynchronization
|
|
lvcreate --yes --type raid6 -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "aaaaa"
|
|
aux wait_for_sync $vg $lv1
|
|
aux check_status_chars $vg $lv1 "AAAAA"
|
|
lvremove --yes $vg/$lv1
|
|
|
|
# raid6 rejects --nosync; it has to initialize P- and Q-Syndromes
|
|
not lvcreate --yes --type raid6 --nosync -i 3 -l 1 -n $lv1 $vg
|
|
|
|
# raid10 supports resynchronization
|
|
lvcreate --yes --type raid10 -m 1 -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "aaaaaa"
|
|
aux wait_for_sync $vg $lv1
|
|
aux check_status_chars $vg $lv1 "AAAAAA"
|
|
aux wait_for_sync $vg $lv1
|
|
lvremove --yes $vg/$lv1
|
|
|
|
# raid10 supports --nosync
|
|
lvcreate --yes --type raid10 --nosync -m 1 -i 3 -l 1 -n $lv1 $vg
|
|
aux check_status_chars $vg $lv1 "AAAAAA"
|
|
aux wait_for_sync $vg $lv1
|
|
lvremove --yes $vg/$lv1
|
|
|
|
vgremove -ff $vg
|