2012-03-16 17:00:05 +04:00
#!/bin/sh
2010-10-15 20:28:14 +04: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-10-15 20:28:14 +04:00
2012-03-16 17:00:05 +04:00
which mkfs.ext2 || skip
2010-10-15 20:28:14 +04:00
extend( ) {
2012-08-27 16:04:21 +04:00
lvextend --use-policies --config " activation { snapshot_autoextend_threshold = $1 } " $vg /snap
2010-10-15 20:28:14 +04:00
}
write( ) {
2012-03-16 17:00:05 +04:00
mount " $DM_DEV_DIR / $vg /snap " mnt
dd if = /dev/zero of = " mnt/file $1 " bs = 1k count = $2
2010-10-15 20:28:14 +04:00
umount mnt
}
percent( ) {
2012-03-16 17:00:05 +04:00
get lv_field $vg /snap snap_percent | cut -d. -f1
2010-10-15 20:28:14 +04:00
}
2012-03-16 17:00:05 +04:00
aux prepare_dmeventd
2010-10-15 20:28:14 +04:00
aux prepare_vg 2
2012-03-16 17:00:05 +04:00
2010-10-15 20:28:14 +04:00
lvcreate -l 8 -n base $vg
2012-03-16 17:00:05 +04:00
mkfs.ext2 " $DM_DEV_DIR / $vg /base "
2010-10-15 20:28:14 +04:00
lvcreate -s -l 4 -n snap $vg /base
mkdir mnt
write 1 4096
2012-03-16 17:00:05 +04:00
pre = $( percent)
2010-10-15 20:28:14 +04:00
extend 50
2012-03-16 17:00:05 +04:00
test $pre -eq $( percent)
2010-10-15 20:28:14 +04:00
write 2 4096
2012-03-16 17:00:05 +04:00
pre = $( percent)
2010-10-15 20:28:14 +04:00
extend 50
2012-03-16 17:00:05 +04:00
test $pre -gt $( percent)
vgremove -f $vg