beb5d004e7d0eae9f0ac2447bcd1e7aa3ceb0d89
[xfstests-dev.git] / 177
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 177
22 #
23 # Test to reproduce PV#: 964316
24 # Check sync reclaims and flushes unlinked inodes to their buffers.
25 #
26 # creator
27 owner=mohamedb@sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46 . ./common.dmapi
47
48 # real QA test starts here
49
50 # Modify as appropriate.
51 _supported_fs xfs 
52 _supported_os Linux
53
54 # Setup Filesystem
55 _require_scratch
56
57 # test that we have DMAPI support
58 _dmapi_scratch_mount
59 umount $SCRATCH_MNT > /dev/null 2>&1
60
61 _scratch_mkfs_xfs >/dev/null 2>&1 \
62         || _fail "mkfs failed"
63
64 _scratch_mount \
65         || _fail "mount failed"
66
67 # run Mark Goodwin test here
68 # Usage: ./bulkstat_unlink_test iterations nfiles stride dir
69 #        Create dir with nfiles, unlink each stride'th file, sync, bulkstat
70 echo "Start original bulkstat_unlink_test"
71 $here/src/bulkstat_unlink_test 10 100 1 $SCRATCH_MNT/bulkstat
72 $here/src/bulkstat_unlink_test 10 1000 1 $SCRATCH_MNT/bulkstat
73 $here/src/bulkstat_unlink_test 15 100 6 $SCRATCH_MNT/bulkstat
74 $here/src/bulkstat_unlink_test 20 1000 3 $SCRATCH_MNT/bulkstat
75
76 # Mount scratch with ikeep enabled
77 umount $SCRATCH_MNT
78 _scratch_mount "-o dmapi,mtpt=$SCRATCH_MNT" \
79         || _fail "mount failed"
80
81 echo "Start bulkstat_unlink_test_modified"
82 $here/src/bulkstat_unlink_test_modified 10 1000 1 $SCRATCH_MNT/bulkstat
83
84
85 # success, all done
86 status=0
87 exit