t-lvextend-percent-extents.sh revision 1.1 1 1.1 haad #!/bin/sh
2 1.1 haad # Copyright (C) 2008 Red Hat, Inc. All rights reserved.
3 1.1 haad #
4 1.1 haad # This copyrighted material is made available to anyone wishing to use,
5 1.1 haad # modify, copy, or redistribute it subject to the terms and conditions
6 1.1 haad # of the GNU General Public License v.2.
7 1.1 haad #
8 1.1 haad # You should have received a copy of the GNU General Public License
9 1.1 haad # along with this program; if not, write to the Free Software Foundation,
10 1.1 haad # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
11 1.1 haad
12 1.1 haad # 'Check extents percentage arguments'
13 1.1 haad
14 1.1 haad . ./test-utils.sh
15 1.1 haad
16 1.1 haad aux prepare_vg 2 128
17 1.1 haad
18 1.1 haad lvcreate -L 64M -n $lv $vg
19 1.1 haad
20 1.1 haad # 'lvextend rejects both size and extents without PVs'
21 1.1 haad not lvextend -l 10 -L 64M $vg/$lv 2>err
22 1.1 haad grep "^ Please specify either size or extents but not both.\$" err
23 1.1 haad
24 1.1 haad # 'lvextend rejects both size and extents with PVs'
25 1.1 haad not lvextend -l 10 -L 64M $vg/$lv $dev1 2>err
26 1.1 haad grep "^ Please specify either size or extents but not both.\$" err
27 1.1 haad
28 1.1 haad # 'lvextend accepts no size or extents but one PV - bz154691'
29 1.1 haad lvextend $vg/$lv $dev1 >out
30 1.1 haad grep "^ Logical volume $lv successfully resized\$" out
31 1.1 haad check_pv_field_ $dev1 pv_free "0"
32 1.1 haad
33 1.1 haad # 'Reset LV to original size'
34 1.1 haad lvremove -f $vg/$lv
35 1.1 haad lvcreate -L 64M -n $lv $vg
36 1.1 haad
37 1.1 haad # 'lvextend accepts no size but extents 100%PVS and two PVs - bz154691'
38 1.1 haad lvextend -l +100%PVS $vg/$lv $dev1 $dev2 >out
39 1.1 haad grep "^ Logical volume $lv successfully resized\$" out
40 1.1 haad check_pv_field_ $dev1 pv_free "0"
41 1.1 haad check_pv_field_ $dev2 pv_free "0"
42 1.1 haad
43 1.1 haad # Exercise the range overlap code. Allocate every 2 extents.
44 1.1 haad #
45 1.1 haad # Physical Extents
46 1.1 haad # 1 2
47 1.1 haad #012345678901234567890123
48 1.1 haad #
49 1.1 haad #aaXXaaXXaaXXaaXXaaXXaaXX - (a)llocated
50 1.1 haad #rrrXXXrrrXXXrrrXXXrrrXXX - (r)ange on cmdline
51 1.1 haad #ooXXXXXXoXXXooXXXXXXoXXX - (o)verlap of range and allocated
52 1.1 haad #
53 1.1 haad # Key: a - allocated
54 1.1 haad # F - free
55 1.1 haad # r - part of a range on the cmdline
56 1.1 haad # N - not on cmdline
57 1.1 haad #
58 1.1 haad # Create the LV with 12 extents, allocated every other 2 extents.
59 1.1 haad # Then extend it, with a range of PVs on the cmdline of every other 3 extents.
60 1.1 haad # Total number of extents should be 12 + overlap = 12 + 6 = 18.
61 1.1 haad # Thus, total size for the LV should be 18 * 4M = 72M
62 1.1 haad #
63 1.1 haad # 'Reset LV to 12 extents, allocate every other 2 extents'
64 1.1 haad create_pvs=`for i in $(seq 0 4 20); do echo -n "\$dev1:$i-$(($i + 1)) "; done`
65 1.1 haad lvremove -f $vg/$lv
66 1.1 haad lvcreate -l 12 -n $lv $vg $create_pvs
67 1.1 haad check_lv_field_ $vg/$lv lv_size "48.00M"
68 1.1 haad
69 1.1 haad # 'lvextend with partially allocated PVs and extents 100%PVS with PE ranges'
70 1.1 haad extend_pvs=`for i in $(seq 0 6 18); do echo -n "\$dev1:$i-$(($i + 2)) "; done`
71 1.1 haad lvextend -l +100%PVS $vg/$lv $extend_pvs >out
72 1.1 haad grep "^ Logical volume $lv successfully resized\$" out
73 1.1 haad check_lv_field_ $vg/$lv lv_size "72.00M"
74 1.1 haad
75