2013-02-05 17:24:05 +04:00
#!/bin/sh
# Copyright (C) 2013 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
# Test creation of thin snapshots using external origin
. lib/test
which mkfs.ext2 || skip
which fsck || skip
#
# Main
#
aux have_thin 1 3 0 || skip
aux prepare_pvs 2 64
vgcreate $vg -s 64K $( cat DEVICES)
2014-01-29 17:23:50 +04:00
# Test validation for external origin being multiple of thin pool chunk size
lvcreate -L10M -T $vg /pool192 -c 192k
lvcreate -an -pr -Zn -l1 -n $lv1 $vg
not lvcreate -s $vg /$lv1 --thinpool $vg /pool192
lvcreate -an -pr -Zn -l5 -n $lv2 $vg
not lvcreate -s $vg /$lv2 --thinpool $vg /pool192
lvremove -f $vg
# Prepare pool and external origin with filesystem
2013-02-05 17:24:05 +04:00
lvcreate -L10M -V10M -T $vg /pool --name $lv1
2014-02-23 02:08:55 +04:00
mkfs.ext2 " $DM_DEV_DIR / $vg / $lv1 "
2013-02-05 17:24:05 +04:00
lvcreate -L4M -n $lv2 $vg
2014-02-23 02:08:55 +04:00
mkfs.ext2 " $DM_DEV_DIR / $vg / $lv2 "
2013-02-05 17:24:05 +04:00
2013-07-15 16:46:52 +04:00
# Fail to create external origin snapshot of rw LV
not lvcreate -s $vg /$lv2 --thinpool $vg /pool
2013-02-05 17:24:05 +04:00
lvchange -p r $vg /$lv2
# Fail to create snapshot of active r LV
# FIXME: kernel update needed
2013-07-15 16:46:52 +04:00
not lvcreate -s $vg /$lv2 --thinpool $vg /pool
2013-02-05 17:24:05 +04:00
# Deactivate LV we want to use as external origin
# once kernel will ensure read-only this condition may go away
lvchange -an $vg /$lv2
2013-07-15 16:46:52 +04:00
lvcreate -s $vg /$lv2 --thinpool $vg /pool
2013-02-05 17:24:05 +04:00
# Fail with --thin and --snapshot
2013-07-15 16:46:52 +04:00
not lvcreate -s $vg /$lv5 --name $vg /$lv7 -T $vg /newpool
2013-02-05 17:24:05 +04:00
# Fail to create already existing pool
2013-07-15 16:46:52 +04:00
not lvcreate -s $vg /$lv2 -L10 --thinpool $vg /pool
not lvcreate -s $vg /$lv2 --chunksize 64 --thinpool $vg /pool
not lvcreate -s $vg /$lv2 --zero y --thinpool $vg /pool
not lvcreate -s $vg /$lv2 --poolmetadata $vg /$lv1 --thinpool $vg /pool
2013-02-05 17:24:05 +04:00
# Fail with nonexistent pool
2013-07-15 16:46:52 +04:00
not lvcreate -s $vg /$lv2 --thinpool $vg /newpool
2013-02-05 17:24:05 +04:00
# Create pool and snap
2013-07-12 15:54:53 +04:00
lvcreate -s -K $vg /$lv2 --name $vg /$lv3 -L20 --chunksize 128 --thinpool $vg /newpool
lvcreate -s -K $vg /$lv3 --name $vg /$lv4
lvcreate -s -K $vg /$lv2 --name $vg /$lv5 --thinpool $vg /newpool
2013-02-05 17:24:05 +04:00
# Make normal thin snapshot
2013-07-12 15:54:53 +04:00
lvcreate -s -K $vg /$lv5 --name $vg /$lv6
2013-02-05 17:24:05 +04:00
# We do not need to specify thinpool when doing thin snap, but it should work
2013-07-12 15:54:53 +04:00
lvcreate -s -K $vg /$lv5 --name $vg /$lv7 --thinpool $vg /newpool
2013-02-05 17:24:05 +04:00
check inactive $vg $lv2
lvchange -ay $vg /$lv2
2013-07-12 15:54:53 +04:00
lvcreate -s -K $vg /$lv2 --name $vg /$lv8 --thinpool $vg /newpool
2013-02-05 17:24:05 +04:00
lvs -o+chunksize $vg
check active $vg $lv3
check active $vg $lv4
check active $vg $lv5
check active $vg $lv6
check active $vg $lv7
2014-02-23 02:08:55 +04:00
fsck -n " $DM_DEV_DIR / $vg / $lv1 "
fsck -n " $DM_DEV_DIR / $vg / $lv7 "
2013-02-05 17:24:05 +04:00
vgremove -ff $vg