2018-08-27 22:53:09 +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-27 22:53:09 +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 writecache usage
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
2018-11-08 12:21:13 +03:00
aux have_writecache 1 0 0 || skip
which mkfs.xfs || skip
2020-06-11 00:08:28 +03:00
# scsi_debug devices with 512 LBS 512 PBS
2022-09-06 20:00:55 +03:00
aux prepare_scsi_debug_dev 602
2020-06-11 00:08:28 +03:00
check sysfs " $( < SCSI_DEBUG_DEV) " queue/logical_block_size "512"
check sysfs " $( < SCSI_DEBUG_DEV) " queue/physical_block_size "512"
2022-09-06 20:00:55 +03:00
aux prepare_devs 2 301
2020-06-11 00:08:28 +03:00
2021-06-30 19:56:42 +03:00
# Tests with fs block sizes require a libblkid version that shows BLOCK_SIZE
vgcreate $vg " $dev1 "
2022-09-06 20:00:55 +03:00
lvcreate -n $lv1 -L 300 $vg
2021-06-30 19:56:42 +03:00
mkfs.xfs -f " $DM_DEV_DIR / $vg / $lv1 "
2022-09-09 23:16:56 +03:00
blkid -p " $DM_DEV_DIR / $vg / $lv1 " | grep BLOCK_SIZE || skip
2021-06-30 19:56:42 +03:00
lvchange -an $vg
vgremove -ff $vg
2020-06-11 00:08:28 +03:00
# scsi_debug devices with 512 LBS and 4K PBS
#aux prepare_scsi_debug_dev 256 sector_size=512 physblk_exp=3
#check sysfs "$(< SCSI_DEBUG_DEV)" queue/logical_block_size "512"
#check sysfs "$(< SCSI_DEBUG_DEV)" queue/physical_block_size "4096"
#aux prepare_devs 2 64
# loop devs with 512 LBS and 512 PBS
#dd if=/dev/zero of=loopa bs=$((1024*1024)) count=64 2> /dev/null
#dd if=/dev/zero of=loopb bs=$((1024*1024)) count=64 2> /dev/null
#LOOP1=$(losetup -f loopa --show)
#LOOP2=$(losetup -f loopb --show)
#aux extend_filter "a|$LOOP1|"
#aux extend_filter "a|$LOOP2|"
#aux lvmconf 'devices/scan = "/dev"'
#dev1=$LOOP1
#dev2=$LOOP2
# loop devs with 4096 LBS and 4096 PBS
#dd if=/dev/zero of=loopa bs=$((1024*1024)) count=64 2> /dev/null
#dd if=/dev/zero of=loopb bs=$((1024*1024)) count=64 2> /dev/null
#LOOP1=$(losetup -f loopa --sector-size 4096 --show)
#LOOP2=$(losetup -f loopb --sector-size 4096 --show)
#aux extend_filter "a|$LOOP1|"
#aux extend_filter "a|$LOOP2|"
#aux lvmconf 'devices/scan = "/dev"'
#dev1=$LOOP1
#dev2=$LOOP2
# the default is brd ram devs with 512 LBS 4K PBS
# aux prepare_devs 2 64
blockdev --getss " $dev1 "
blockdev --getpbsz " $dev1 "
blockdev --getss " $dev2 "
blockdev --getpbsz " $dev2 "
mnt = "mnt"
mkdir -p $mnt
2020-09-19 16:57:29 +03:00
awk 'BEGIN { while (z++ < 16384) printf "A" }' > fileA
awk 'BEGIN { while (z++ < 16384) printf "B" }' > fileB
awk 'BEGIN { while (z++ < 16384) printf "C" }' > fileC
2018-08-27 22:53:09 +03:00
# generate random data
2020-06-11 00:08:28 +03:00
dd if = /dev/urandom of = randA bs = 512K count = 2
dd if = /dev/urandom of = randB bs = 512K count = 3
dd if = /dev/urandom of = randC bs = 512K count = 4
_add_new_data_to_mnt( ) {
mkfs.xfs -f " $DM_DEV_DIR / $vg / $lv1 "
mount " $DM_DEV_DIR / $vg / $lv1 " $mnt
# add original data
cp randA $mnt
cp randB $mnt
cp randC $mnt
mkdir $mnt /1
cp fileA $mnt /1
cp fileB $mnt /1
cp fileC $mnt /1
mkdir $mnt /2
cp fileA $mnt /2
cp fileB $mnt /2
cp fileC $mnt /2
sync
}
_add_more_data_to_mnt( ) {
mkdir $mnt /more
cp fileA $mnt /more
cp fileB $mnt /more
cp fileC $mnt /more
cp randA $mnt /more
cp randB $mnt /more
cp randC $mnt /more
sync
}
_verify_data_on_mnt( ) {
diff randA $mnt /randA
diff randB $mnt /randB
diff randC $mnt /randC
diff fileA $mnt /1/fileA
diff fileB $mnt /1/fileB
diff fileC $mnt /1/fileC
diff fileA $mnt /2/fileA
diff fileB $mnt /2/fileB
diff fileC $mnt /2/fileC
}
_verify_more_data_on_mnt( ) {
diff randA $mnt /more/randA
diff randB $mnt /more/randB
diff randC $mnt /more/randC
diff fileA $mnt /more/fileA
diff fileB $mnt /more/fileB
diff fileC $mnt /more/fileC
}
_verify_data_on_lv( ) {
lvchange -ay $vg /$lv1
mount " $DM_DEV_DIR / $vg / $lv1 " $mnt
_verify_data_on_mnt
rm $mnt /randA
rm $mnt /randB
rm $mnt /randC
rm -rf $mnt /1
rm -rf $mnt /2
umount $mnt
lvchange -an $vg /$lv1
}
2018-08-27 22:53:09 +03:00
vgcreate $SHARED $vg " $dev1 "
vgextend $vg " $dev2 "
2020-06-11 00:08:28 +03:00
blockdev --getss " $dev1 "
blockdev --getpbsz " $dev1 "
blockdev --getss " $dev2 "
blockdev --getpbsz " $dev2 "
2018-08-27 22:53:09 +03:00
2020-06-11 00:08:28 +03:00
# Test attach while inactive, detach while inactive
# create fs on LV before writecache is attached
2018-08-27 22:53:09 +03:00
2022-09-06 20:00:55 +03:00
lvcreate -n $lv1 -L 300 -an $vg " $dev1 "
2020-06-11 00:08:28 +03:00
lvcreate -n $lv2 -l 4 -an $vg " $dev2 "
2018-08-27 22:53:09 +03:00
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
_add_new_data_to_mnt
umount $mnt
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv1
2019-01-30 18:55:34 +03:00
lvconvert --yes --type writecache --cachevol $lv2 $vg /$lv1
2018-08-27 22:53:09 +03:00
check lv_field $vg /$lv1 segtype writecache
2019-10-16 00:03:34 +03:00
lvs -a $vg /${ lv2 } _cvol --noheadings -o segtype >out
2018-08-27 22:53:09 +03:00
grep linear out
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
mount " $DM_DEV_DIR / $vg / $lv1 " $mnt
_add_more_data_to_mnt
_verify_data_on_mnt
_verify_more_data_on_mnt
umount $mnt
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv1
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv1
2020-06-11 00:08:28 +03:00
_verify_data_on_lv
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv2
2020-06-11 00:08:28 +03:00
lvremove $vg /$lv1
lvremove $vg /$lv2
2018-08-27 22:53:09 +03:00
2020-06-11 00:08:28 +03:00
# Test attach while inactive, detach while inactive
# create fs on LV after writecache is attached
2018-08-27 22:53:09 +03:00
2022-09-06 20:00:55 +03:00
lvcreate -n $lv1 -L 300 -an $vg " $dev1 "
2020-06-11 00:08:28 +03:00
lvcreate -n $lv2 -l 4 -an $vg " $dev2 "
2019-01-30 18:55:34 +03:00
lvconvert --yes --type writecache --cachevol $lv2 $vg /$lv1
2018-08-27 22:53:09 +03:00
check lv_field $vg /$lv1 segtype writecache
2019-10-16 00:03:34 +03:00
lvs -a $vg /${ lv2 } _cvol --noheadings -o segtype >out
2018-08-27 22:53:09 +03:00
grep linear out
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
_add_new_data_to_mnt
umount $mnt
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv1
lvconvert --splitcache $vg /$lv1
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
mount " $DM_DEV_DIR / $vg / $lv1 " $mnt
_add_more_data_to_mnt
_verify_data_on_mnt
_verify_more_data_on_mnt
umount $mnt
2018-08-27 22:53:09 +03:00
lvchange -an $vg /$lv1
2020-06-11 00:08:28 +03:00
_verify_data_on_lv
lvremove $vg /$lv1
lvremove $vg /$lv2
2020-02-17 21:14:13 +03:00
2020-06-11 00:08:28 +03:00
# Test attach while active, detach while active
2020-02-17 21:14:13 +03:00
2022-09-06 20:00:55 +03:00
lvcreate -n $lv1 -L 300 -an $vg " $dev1 "
2020-06-11 00:08:28 +03:00
lvcreate -n $lv2 -l 4 -an $vg " $dev2 "
2020-02-17 21:14:13 +03:00
lvchange -ay $vg /$lv1
2020-06-11 00:08:28 +03:00
_add_new_data_to_mnt
lvconvert --yes --type writecache --cachevol $lv2 $vg /$lv1
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
_add_more_data_to_mnt
_verify_data_on_mnt
lvconvert --splitcache $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
_verify_data_on_mnt
_verify_more_data_on_mnt
umount $mnt
2020-02-17 21:14:13 +03:00
lvchange -an $vg /$lv1
2020-06-11 00:08:28 +03:00
lvchange -an $vg /$lv2
_verify_data_on_lv
2020-02-17 21:14:13 +03:00
lvremove $vg /$lv1
2020-06-11 00:08:28 +03:00
lvremove $vg /$lv2
2020-02-17 21:14:13 +03:00
2020-06-11 00:08:28 +03:00
# Test attach while active, detach while active,
# skip cleaner so flush message is used instead
2022-09-06 20:00:55 +03:00
lvcreate -n $lv1 -L 300 -an $vg " $dev1 "
2020-06-22 19:52:14 +03:00
lvcreate -n $lv2 -l 4 -an $vg " $dev2 "
lvchange -ay $vg /$lv1
_add_new_data_to_mnt
lvconvert --yes --type writecache --cachevol $lv2 $vg /$lv1
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
_add_more_data_to_mnt
_verify_data_on_mnt
lvconvert --splitcache --cachesettings cleaner = 0 $vg /$lv1
check lv_field $vg /$lv1 segtype linear
check lv_field $vg /$lv2 segtype linear
blockdev --getss " $DM_DEV_DIR / $vg / $lv1 "
blockdev --getpbsz " $DM_DEV_DIR / $vg / $lv1 "
_verify_data_on_mnt
_verify_more_data_on_mnt
umount $mnt
lvchange -an $vg /$lv1
lvchange -an $vg /$lv2
_verify_data_on_lv
lvremove $vg /$lv1
lvremove $vg /$lv2
2022-09-06 20:00:55 +03:00
2018-08-27 22:53:09 +03:00
vgremove -ff $vg