2012-03-16 17:00:05 +04:00
#!/bin/sh
2010-01-19 19:44:57 +03:00
# Copyright (C) 2010 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2011-01-05 03:16:18 +03:00
. lib/test
2010-01-19 19:44:57 +03:00
2012-03-16 17:00:05 +04:00
which mkfs.ext3 || skip
check_logical_block_size( ) {
2011-06-09 18:26:47 +04:00
local DEV_ = $( cat SCSI_DEBUG_DEV)
2010-01-19 19:44:57 +03:00
# Verify logical_block_size - requires Linux >= 2.6.31
2012-03-16 17:00:05 +04:00
SYSFS_LOGICAL_BLOCK_SIZE = $( echo /sys/block/$( basename $DEV_ ) /queue/logical_block_size)
2010-01-19 19:44:57 +03:00
if [ -f " $SYSFS_LOGICAL_BLOCK_SIZE " ] ; then
2012-03-16 17:00:05 +04:00
ACTUAL_LOGICAL_BLOCK_SIZE = $( cat $SYSFS_LOGICAL_BLOCK_SIZE )
2011-06-09 18:26:47 +04:00
test $ACTUAL_LOGICAL_BLOCK_SIZE = $1
2010-01-19 19:44:57 +03:00
fi
}
2013-05-13 23:56:47 +04:00
check_optimal_io_size( ) {
local DEV_ = $( cat SCSI_DEBUG_DEV)
# Verify optimal_io_size
SYSFS_OPTIMAL_IO_SIZE = $( echo /sys/block/$( basename $DEV_ ) /queue/optimal_io_size)
if [ -f " $SYSFS_OPTIMAL_IO_SIZE " ] ; then
ACTUAL_OPTIMAL_IO_SIZE = $( cat $SYSFS_OPTIMAL_IO_SIZE )
test $ACTUAL_OPTIMAL_IO_SIZE = $1
fi
}
2012-03-16 17:00:05 +04:00
lvdev_( ) {
2010-04-07 18:46:26 +04:00
echo " $DM_DEV_DIR / $1 / $2 "
2010-01-19 19:44:57 +03:00
}
2012-03-16 17:00:05 +04:00
test_snapshot_mount( ) {
2013-05-31 23:11:51 +04:00
lvcreate -aey -L4M -n $lv1 $vg " $dev1 "
2010-01-19 19:44:57 +03:00
mkfs.ext3 $( lvdev_ $vg $lv1 )
mkdir test_mnt
2012-03-16 17:00:05 +04:00
mount " $( lvdev_ $vg $lv1 ) " test_mnt
2013-05-31 23:11:51 +04:00
lvcreate -L4M -n $lv2 -s $vg /$lv1
2010-01-19 19:44:57 +03:00
umount test_mnt
# mount the origin
2012-03-16 17:00:05 +04:00
mount " $( lvdev_ $vg $lv1 ) " test_mnt
2010-01-19 19:44:57 +03:00
umount test_mnt
# mount the snapshot
2012-03-16 17:00:05 +04:00
mount " $( lvdev_ $vg $lv2 ) " test_mnt
2010-01-19 19:44:57 +03:00
umount test_mnt
rm -r test_mnt
vgchange -an $vg
lvremove -f $vg /$lv1
}
# FIXME add more topology-specific tests and validation (striped LVs, etc)
NUM_DEVS = 1
2010-08-12 08:11:48 +04:00
PER_DEV_SIZE = 34
2010-01-19 19:44:57 +03:00
DEV_SIZE = $(( $NUM_DEVS * $PER_DEV_SIZE ))
2011-06-09 18:26:47 +04:00
# Test that kernel supports topology
2012-10-11 13:51:04 +04:00
aux prepare_scsi_debug_dev $DEV_SIZE || skip
2011-06-09 18:26:47 +04:00
if [ ! -e /sys/block/$( basename $( cat SCSI_DEBUG_DEV) ) /alignment_offset ] ; then
aux cleanup_scsi_debug_dev
2012-03-16 17:00:05 +04:00
skip
2011-06-09 18:26:47 +04:00
fi
aux cleanup_scsi_debug_dev
2010-01-19 19:44:57 +03:00
# ---------------------------------------------
# Create "desktop-class" 4K drive
# (logical_block_size=512, physical_block_size=4096, alignment_offset=0):
LOGICAL_BLOCK_SIZE = 512
2011-01-05 03:16:18 +03:00
aux prepare_scsi_debug_dev $DEV_SIZE \
2010-01-19 19:44:57 +03:00
sector_size = $LOGICAL_BLOCK_SIZE physblk_exp = 3
2011-06-09 18:26:47 +04:00
check_logical_block_size $LOGICAL_BLOCK_SIZE
2010-01-19 19:44:57 +03:00
2010-05-24 23:27:38 +04:00
aux prepare_pvs $NUM_DEVS $PER_DEV_SIZE
2013-05-31 23:11:51 +04:00
vgcreate $vg $( cat DEVICES)
2010-01-19 19:44:57 +03:00
test_snapshot_mount
vgremove $vg
2011-01-05 03:16:18 +03:00
aux cleanup_scsi_debug_dev
2010-01-19 19:44:57 +03:00
# ---------------------------------------------
# Create "desktop-class" 4K drive w/ 63-sector DOS partition compensation
# (logical_block_size=512, physical_block_size=4096, alignment_offset=3584):
LOGICAL_BLOCK_SIZE = 512
2011-01-05 03:16:18 +03:00
aux prepare_scsi_debug_dev $DEV_SIZE \
2010-01-19 19:44:57 +03:00
sector_size = $LOGICAL_BLOCK_SIZE physblk_exp = 3 lowest_aligned = 7
2011-06-09 18:26:47 +04:00
check_logical_block_size $LOGICAL_BLOCK_SIZE
2010-01-19 19:44:57 +03:00
2010-05-24 23:27:38 +04:00
aux prepare_pvs $NUM_DEVS $PER_DEV_SIZE
2013-05-31 23:11:51 +04:00
vgcreate $vg $( cat DEVICES)
2010-01-19 19:44:57 +03:00
test_snapshot_mount
vgremove $vg
2011-01-05 03:16:18 +03:00
aux cleanup_scsi_debug_dev
2010-01-19 19:44:57 +03:00
# ---------------------------------------------
# Create "enterprise-class" 4K drive
# (logical_block_size=4096, physical_block_size=4096, alignment_offset=0):
LOGICAL_BLOCK_SIZE = 4096
2011-01-05 03:16:18 +03:00
aux prepare_scsi_debug_dev $DEV_SIZE \
2010-01-19 19:44:57 +03:00
sector_size = $LOGICAL_BLOCK_SIZE
2011-06-09 18:26:47 +04:00
check_logical_block_size $LOGICAL_BLOCK_SIZE
2010-01-19 19:44:57 +03:00
2010-05-24 23:27:38 +04:00
aux prepare_pvs $NUM_DEVS $PER_DEV_SIZE
2013-05-31 23:11:51 +04:00
vgcreate $vg $( cat DEVICES)
2010-01-19 19:44:57 +03:00
test_snapshot_mount
vgremove $vg
2013-05-13 23:56:47 +04:00
aux cleanup_scsi_debug_dev
# ---------------------------------------------
# Create "enterprise-class" 512 drive w/ HW raid stripe_size = 768K
# (logical_block_size=512, physical_block_size=512, alignment_offset=0):
# - tests case where optimal_io_size=768k < default PE alignment=1MB
LOGICAL_BLOCK_SIZE = 512
aux prepare_scsi_debug_dev $DEV_SIZE \
sector_size = $LOGICAL_BLOCK_SIZE opt_blks = 1536
check_logical_block_size $LOGICAL_BLOCK_SIZE
check_optimal_io_size 786432
aux prepare_pvs 1 $PER_DEV_SIZE
check pv_field $( cat DEVICES) pe_start 768.00k
aux cleanup_scsi_debug_dev