generic/077: fall back to /usr if /lib/modules doesn't exist
[xfstests-dev.git] / tests / xfs / 108
1 #! /bin/bash
2 # FS QA Test No. 108
3 #
4 # Simple quota accounting test for direct/buffered/mmap IO.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2005 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 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37 . ./common/quota
38
39 # real QA test starts here
40 _supported_fs xfs
41 _supported_os Linux #IRIX
42 _require_scratch
43 _require_xfs_quota
44
45 test_files()
46 {
47         echo; echo "### create files, setting up ownership (type=$type)"
48         rm -f $SCRATCH_MNT/{buffer,direct,mmap}
49         $XFS_IO_PROG -fc "chproj $prid" $SCRATCH_MNT/{buffer,direct,mmap}
50         chown $uid $SCRATCH_MNT/{buffer,direct,mmap}
51         chgrp $gid $SCRATCH_MNT/{buffer,direct,mmap}
52         for file in $SCRATCH_MNT/{buffer,direct,mmap}; do
53                 $here/src/lstat64 $file | head -3 | _filter_scratch
54                 $XFS_IO_PROG -c lsproj $file
55         done
56 }
57
58 test_accounting()
59 {
60         echo "### some controlled buffered, direct and mmapd IO (type=$type)"
61         echo "--- initiating parallel IO..." >>$seqres.full
62         $XFS_IO_PROG -c 'pwrite -b 1m 0 16m' -c 'fsync' \
63                                         $SCRATCH_MNT/buffer >>$seqres.full 2>&1 &
64         $XFS_IO_PROG -c 'pwrite -b 1m 0 16m' -d \
65                                         $SCRATCH_MNT/direct >>$seqres.full 2>&1 &
66         $XFS_IO_PROG -c 't 16m' -c 'mm -rw 0 16m' -c 'mw 0 16m' -c 'ms -s' \
67                                         $SCRATCH_MNT/mmap   >>$seqres.full 2>&1 &
68         wait
69         echo "--- completed parallel IO ($type)" >>$seqres.full
70
71         for file in $SCRATCH_MNT/{buffer,direct,mmap}; do
72                 $here/src/lstat64 $file | head -3 | _filter_scratch
73         done
74         xfs_quota -c "quota -hnb -$type $id" $QARGS | _filter_quota
75         xfs_quota -c "quota -hni -$type $id" $QARGS | _filter_quota
76         xfs_quota -c "quota -hnr -$type $id" $QARGS | _filter_quota
77 }
78
79 export MOUNT_OPTIONS="-opquota"
80 _qmount
81 _require_prjquota $SCRATCH_DEV
82
83 # real QA test starts here
84 rm -f $tmp.projects $seqres.full
85 umount $SCRATCH_DEV 2>/dev/null
86 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
87 cat $tmp.mkfs >>$seqres.full
88 _scratch_mount
89
90 uid=1
91 gid=2
92 prid=3
93 export QARGS="-x -D /dev/null -P /dev/null $SCRATCH_MNT"
94 umount $SCRATCH_DEV
95
96 echo; echo "### test user accounting"
97 export MOUNT_OPTIONS="-ouquota"
98 _qmount
99 type=u
100 id=$uid
101 test_files
102 test_accounting
103 umount $SCRATCH_DEV 2>/dev/null
104
105 echo; echo "### test group accounting"
106 export MOUNT_OPTIONS="-ogquota"
107 _qmount
108 type=g
109 id=$gid
110 test_files
111 test_accounting
112 umount $SCRATCH_DEV 2>/dev/null
113
114 #echo; echo "### test project accounting"
115 export MOUNT_OPTIONS="-opquota"
116 _qmount
117 type=p
118 id=$prid
119 test_files
120 test_accounting
121 umount $SCRATCH_DEV 2>/dev/null
122
123 status=0
124 exit