2018-08-17 23:45:52 +03:00
#!/usr/bin/env bash
2018-11-08 12:21:13 +03:00
# Copyright (C) 2018 Red Hat, Inc. All rights reserved.
2018-08-17 23:45:52 +03:00
#
# 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
# Test single lv cache options
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
2018-11-08 19:19:39 +03:00
aux have_cache 1 10 0 || skip
2018-11-08 12:21:13 +03:00
which mkfs.xfs || skip
2018-08-17 23:45:52 +03:00
mount_dir = "mnt"
2018-11-08 12:21:13 +03:00
mkdir -p " $mount_dir "
2018-08-17 23:45:52 +03:00
# generate random data
2018-11-08 12:21:13 +03:00
dd if = /dev/urandom of = pattern1 bs = 512K count = 1
2018-08-17 23:45:52 +03:00
2022-09-07 02:02:29 +03:00
aux prepare_devs 5 310
2018-08-17 23:45:52 +03:00
vgcreate $SHARED $vg " $dev1 " " $dev2 " " $dev3 " " $dev4 " " $dev5 "
2022-09-07 02:02:29 +03:00
lvcreate -n $lv1 -L 300 -an $vg " $dev1 "
2018-08-17 23:45:52 +03:00
lvcreate -n $lv2 -l 4 -an $vg " $dev2 "
lvcreate -n $lv3 -l 4 -an $vg " $dev3 "
lvcreate -n $lv4 -l 4 -an $vg " $dev4 "
lvcreate -n $lv5 -l 8 -an $vg " $dev5 "
mkfs_mount_umount( )
{
lvt = $1
lvchange -ay $vg /$lvt
mkfs.xfs -f -s size = 4096 " $DM_DEV_DIR / $vg / $lvt "
2018-11-08 12:21:13 +03:00
mount " $DM_DEV_DIR / $vg / $lvt " " $mount_dir "
cp pattern1 " $mount_dir /pattern1 "
dd if = /dev/zero of = " $mount_dir /zeros2M " bs = 1M count = 2 conv = fdatasync
umount " $mount_dir "
2018-08-17 23:45:52 +03:00
lvchange -an $vg /$lvt
}
mount_umount( )
{
lvt = $1
lvchange -ay $vg /$lvt
2018-11-08 12:21:13 +03:00
mount " $DM_DEV_DIR / $vg / $lvt " " $mount_dir "
diff pattern1 " $mount_dir /pattern1 "
2018-11-08 18:33:09 +03:00
dd if = " $mount_dir /zeros2M " of = /dev/null bs = 1M count = 2
2018-11-08 12:21:13 +03:00
umount " $mount_dir "
2018-08-17 23:45:52 +03:00
lvchange -an $vg /$lvt
}
#
# Test --cachemetadataformat
#
# 1 shouldn't be used any longer
2019-01-30 18:55:34 +03:00
not lvconvert --cachemetadataformat 1 -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
# 3 doesn't exist
2019-01-30 18:55:34 +03:00
not lvconvert --cachemetadataformat 3 -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
# 2 is used by default
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemetadataformat "2"
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
# 2 can be set explicitly
2019-01-30 18:55:34 +03:00
lvconvert --cachemetadataformat 2 -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemetadataformat "2"
lvconvert --splitcache $vg /$lv1
# "auto" means 2
2019-01-30 18:55:34 +03:00
lvconvert --cachemetadataformat auto -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemetadataformat "2"
mkfs_mount_umount $lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
#
# Test --poolmetadatasize
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --poolmetadatasize 4m $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 lv_metadata_size "4.00m"
mkfs_mount_umount $lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
#
# Test --chunksize
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --chunksize 32k $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 chunksize "32.00k"
mkfs_mount_umount $lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
#
# Test --cachemode
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --cachemode writethrough $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemode "writethrough"
mkfs_mount_umount $lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
# FIXME: kernel errors for other cache modes
2019-01-30 18:55:34 +03:00
#lvconvert -y --type cache --cachevol $lv2 --cachemode passthrough $vg/$lv1
2018-08-17 23:45:52 +03:00
#check lv_field $vg/$lv1 cachemode "passthrough"
#mkfs_mount_umount $lv1
#lvconvert --splitcache $vg/$lv1
#check lv_field $vg/$lv1 segtype linear
#check lv_field $vg/$lv2 segtype linear
#mount_umount $lv1
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --cachemode writeback $vg /$lv1
2018-08-17 23:45:52 +03:00
2018-11-08 18:40:41 +03:00
check lv_field $vg /$lv1 cachemode "writeback"
2018-08-17 23:45:52 +03:00
2018-11-08 18:40:41 +03:00
mkfs_mount_umount $lv1
2018-08-17 23:45:52 +03:00
2018-11-08 18:40:41 +03:00
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
2018-08-17 23:45:52 +03:00
#
# Test --cachepolicy
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --cachepolicy smq $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachepolicy "smq"
mkfs_mount_umount $lv1
2018-11-08 18:43:23 +03:00
lvchange --cachepolicy cleaner $vg /$lv1
lvchange -ay $vg /$lv1
check lv_field $vg /$lv1 cachepolicy "cleaner"
lvchange -an $vg /$lv1
2018-08-17 23:45:52 +03:00
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
#
# Test --cachesettings
# (only for mq policy, no settings for smq)
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 --cachemode writethrough --cachepolicy mq --cachesettings 'migration_threshold = 233 sequential_threshold=13 random_threshold =1' $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemode "writethrough"
check lv_field $vg /$lv1 cachepolicy "mq"
lvs -o cachesettings $vg /$lv1 > settings
grep "migration_threshold=233" settings
grep "sequential_threshold=13" settings
grep "random_threshold=1" settings
mkfs_mount_umount $lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
mount_umount $lv1
#
# Test lvchange of --cachemode, --cachepolicy, --cachesettings
#
2019-01-30 18:55:34 +03:00
lvconvert -y --type cache --cachevol $lv2 $vg /$lv1
2018-08-17 23:45:52 +03:00
lvchange -ay $vg /$lv1
2019-07-02 18:59:40 +03:00
lvchange -y --cachemode writeback $vg /$lv1
2018-08-17 23:45:52 +03:00
check lv_field $vg /$lv1 cachemode "writeback"
lvchange --cachemode writethrough $vg /$lv1
check lv_field $vg /$lv1 cachemode "writethrough"
2018-11-08 19:08:38 +03:00
lvchange --cachemode passthrough $vg /$lv1
check lv_field $vg /$lv1 cachemode "passthrough"
2018-08-17 23:45:52 +03:00
lvchange -an $vg /$lv1
lvchange --cachepolicy mq --cachesettings 'migration_threshold=100' $vg /$lv1
check lv_field $vg /$lv1 cachepolicy "mq"
check lv_field $vg /$lv1 cachesettings "migration_threshold=100"
lvconvert --splitcache $vg /$lv1
#
# Test --poolmetadata
#
# causes a cache-pool type LV to be created
lvconvert -y --type cache --cachepool $lv3 --poolmetadata $lv4 $vg /$lv5
lvs -a -o+segtype $vg
check lv_field $vg /$lv5 segtype cache
# check lv_field doesn't work for hidden lvs
2019-10-21 16:11:51 +03:00
lvs -a -o segtype $vg /${ lv3 } _cpool > segtype
2018-08-17 23:45:52 +03:00
grep cache-pool segtype
lvconvert --splitcache $vg /$lv5
check lv_field $vg /$lv5 segtype linear
check lv_field $vg /$lv3 segtype cache-pool
vgremove -ff $vg