mirror of
git://sourceware.org/git/lvm2.git
synced 2025-08-31 09:49:29 +03:00
Kernel without commit kernel commit 9f346f7d4ea73692b82f5102ca8698e4040469ea cannot reasize raid LV without failing the raid itself. So skip some tests for kernels 6.13 6.13 6.15. TODO: maybe we want to print some warning message to the users with affected kernels ??
54 lines
1.5 KiB
Bash
54 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2012,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
|
|
|
|
# 'Exercise some lvcreate diagnostics'
|
|
|
|
|
|
. lib/inittest --skip-with-lvmpolld --skip-with-lvmlockd
|
|
|
|
aux have_raid_resizable || skip "Skip with buggy md raid resize"
|
|
|
|
# FIXME update test to make something useful on <16T
|
|
aux can_use_16T || skip
|
|
aux have_raid 1 3 0 || skip
|
|
|
|
aux prepare_vg 5
|
|
|
|
# Fake ~2.5PiB volume group $vg1 via snapshot LVs
|
|
for device in "$lv1" "$lv2" "$lv3" "$lv4" "$lv5"
|
|
do
|
|
lvcreate --type snapshot -s -l 20%FREE -n $device $vg --virtualsize 520T
|
|
done
|
|
|
|
aux extend_filter_LVMTEST
|
|
|
|
pvcreate "$DM_DEV_DIR"/$vg/${lv}[12345]
|
|
vgcreate $vg1 "$DM_DEV_DIR"/$vg/${lv}[12345]
|
|
|
|
|
|
#
|
|
# Create and extend large RAID10 LV
|
|
#
|
|
# We need '--nosync' or our virtual devices won't work
|
|
|
|
lvcreate --type raid10 -m 1 -i 2 -L 200T -n $lv1 $vg1 --nosync
|
|
check lv_field $vg1/$lv1 size "200.00t"
|
|
lvextend -L +200T $vg1/$lv1
|
|
check lv_field $vg1/$lv1 size "400.00t"
|
|
lvextend -L +100T $vg1/$lv1
|
|
check lv_field $vg1/$lv1 size "500.00t"
|
|
lvextend -L 1P $vg1/$lv1
|
|
check lv_field $vg1/$lv1 size "1.00p"
|
|
|
|
vgremove -ff $vg1
|
|
vgremove -ff $vg
|