mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
06c5c29443
When we detect not usable vdo on a machine, check lvconvert fails.
79 lines
1.9 KiB
Bash
79 lines
1.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2018 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
|
|
|
|
#
|
|
# Main
|
|
#
|
|
aux prepare_vg 2 6400
|
|
|
|
# Conversion to vdo-pool
|
|
lvcreate -L5G -n $lv1 $vg
|
|
|
|
if not aux have_vdo 6 2 0 ; then
|
|
# For unsupported VDO let's check lvconvert fails
|
|
not lvconvert --yes --type vdo-pool $vg/$lv1 |& tee out
|
|
vgremove -ff $vg
|
|
exit
|
|
fi
|
|
|
|
# Check there is big prompting warning
|
|
not lvconvert --type vdo-pool $vg/$lv1 |& tee out
|
|
grep "WARNING" out
|
|
|
|
# Check --vdosettings is also applied to converted vdo-pool
|
|
lvconvert -y --type vdo-pool --vdosettings 'ack_threads=5' $vg/$lv1
|
|
check lv_field $vg/$lv1 vdo_ack_threads "5"
|
|
lvremove -f $vg
|
|
|
|
#
|
|
lvcreate -L5G -n $lv1 $vg
|
|
lvconvert -y --vdopool $vg/$lv1
|
|
lvremove -f $vg
|
|
|
|
|
|
lvcreate -L5G -n $lv1 $vg
|
|
lvconvert -y --vdopool $vg/$lv1 -n $lv2
|
|
check lv_field $vg/$lv1 segtype vdo-pool
|
|
check lv_field $vg/${lv1}_vdata segtype linear -a
|
|
check lv_field $vg/$lv2 segtype vdo
|
|
lvremove -f $vg
|
|
|
|
|
|
lvcreate -L5G -n $lv1 $vg
|
|
lvconvert -y --type vdo-pool $vg/$lv1 -n $lv2 -V10G
|
|
lvremove -f $vg
|
|
|
|
|
|
lvcreate -L5G -n $lv1 $vg
|
|
lvconvert -y --vdopool $vg/$lv1 -n $lv2 -V10G --compression n --deduplication n
|
|
check lv_field $vg/$lv1 size "5.00g"
|
|
check lv_field $vg/${lv1}_vdata size "5.00g" -a
|
|
check lv_field $vg/$lv2 size "10.00g"
|
|
lvremove -f $vg
|
|
|
|
|
|
# Simple stacking works...
|
|
# Just be sure test do not try to synchronize 5G of mirror!!
|
|
lvcreate -L5G --type mirror --nosync -n $lv1 $vg
|
|
lvconvert -y --vdopool $vg/$lv1 -n $lv2
|
|
lvs -a $vg
|
|
check lv_field $vg/${lv1}_vdata segtype mirror -a
|
|
lvremove -f $vg
|
|
|
|
|
|
vgremove -ff $vg
|