016: Do not discard blocks at mkfs time
[xfstests-dev.git] / 217
1 #! /bin/bash
2 # FS QA Test No. 217
3 #
4 # large log size mkfs test - ensure the log size scaling works
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23 # creator
24 owner=dgc@sgi.com
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36     cd /
37     rm -f $tmp.*
38     _cleanup_testdir
39 }
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os Linux
48
49 _setup_testdir
50 _require_scratch
51 _scratch_mkfs_xfs >/dev/null 2>&1
52 _scratch_mount
53 # 16T mkfs requires a bit over 2G free
54 _require_fs_space $SCRATCH_MNT 2202000
55
56 _require_loop
57 LOOP_DEV=$SCRATCH_MNT/test_fs
58 LOOP_MNT=$SCRATCH_MNT/test_fs_dir
59
60 _do_mkfs()
61 {
62         for i in $*; do
63                 echo -n "fssize=${i}g "
64                 $MKFS_XFS_PROG -f -b size=4096 -l version=2 \
65                         -d name=$LOOP_DEV,size=${i}g |grep log
66                 mount -o loop -t xfs $LOOP_DEV $LOOP_MNT
67                 echo "test write" > $LOOP_MNT/test
68                 umount $LOOP_MNT
69         done
70 }
71 # make large holey file
72 $XFS_IO_PROG -f -c "truncate 16383g" $LOOP_DEV
73
74 #make loopback mount dir
75 mkdir $LOOP_MNT
76
77 # test if large logs are supported
78 $MKFS_XFS_PROG -f -l size=256m -d name=$LOOP_DEV,size=10g > /dev/null 2>&1
79 if [ $? -ne 0 ]; then
80         _notrun "large log sizes not supported by mkfs"
81 fi
82
83 #
84 # walk over "new" sizes supported by recent xfsprogs.
85 # Note that the last test is for 16TB-1GB as 32bit platforms only support
86 # device slightly smaller than 16TB.
87 #
88 _do_mkfs 512 1024 2048 4096 8192 16383
89
90 status=0
91 exit