1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

tests: basic test for vdo on raid LV

Check stacing of VDO on top of raid LV works.
This commit is contained in:
Zdenek Kabelac 2020-09-23 14:48:17 +02:00
parent 39cdc1469d
commit 502b895bb4

View File

@ -0,0 +1,71 @@
#!/usr/bin/env bash
# Copyright (C) 2020 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 vdo-pool's on raidLV
SKIP_WITH_LVMPOLLD=1
. lib/inittest
#
# Main
#
#
aux have_vdo 6 2 1 || skip
aux have_raid 1 3 0 || skip
aux prepare_vg 2 9000
lvcreate --yes --vdo -L4G $vg/vpool
aux zero_dev "$dev1" "$(( $(get first_extent_sector "$dev1") + 8192 )):"
aux zero_dev "$dev2" "$(( $(get first_extent_sector "$dev2") + 8192 )):"
# convert _vdata to raid
lvconvert --yes --type raid1 $vg/vpool_vdata
check lv_field $vg/vpool_vdata segtype raid1 -a
lvconvert --yes -m 0 $vg/vpool_vdata "$dev2"
check lv_field $vg/vpool_vdata segtype linear -a
# vpool should redirect to _vdata
lvconvert --yes --type raid1 $vg/vpool
check lv_field $vg/vpool_vdata segtype raid1 -a
lvremove -f $vg
aux enable_dev "$dev1"
aux enable_dev "$dev2"
lvcreate --type raid1 -L4G --nosync -n vpool1 $vg
lvconvert --yes --vdopool $vg/vpool1 -V2G -n $lv1
mkfs.ext4 -E nodiscard "$DM_DEV_DIR/$vg/$lv1"
not lvrename $vg/vpool1
lvchange -an $vg
lvrename $vg/vpool1 $vg/vpool
lvchange -ay $vg
fsck -n "$DM_DEV_DIR/$vg/$lv1"
lvs -a $vg
vgremove -ff $vg