fsx: Replace use of bcmp() with memcmp()
[xfstests-dev.git] / 091
1 #! /bin/sh
2 # FS QA Test No. 091
3 #
4 # fsx exercising direct IO -- sub-block sizes and concurrent buffered IO
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=nathans@sgi.com
12
13 seq=`basename $0`
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
20
21 # get standard environment, filters and checks
22 . ./common.rc
23 . ./common.filter
24
25 # real QA test starts here
26 _supported_fs xfs
27 _supported_os Linux IRIX
28
29 [ $HOSTOS == IRIX ] && _notrun "Not working on IRIX yet"
30
31 rm -f $seq.full
32
33 run_fsx()
34 {
35         echo fsx $@ | tee -a $seq.full | sed -e "s/ $bsize / BSIZE /g" -e "s/ $psize / PSIZE /g"
36         rm -f $TEST_DIR/junk
37         $here/ltp/fsx $@ $TEST_DIR/junk >>$seq.full 2>&1
38         if [ $? -ne 0 ]; then
39                 cat $seq.full
40                 exit 1
41         fi
42 }
43
44 psize=`$here/src/feature -s`
45 bsize=512
46 kernel=`uname -r  | sed -e 's/\(2\..\).*/\1/'`
47
48 # 2.4 Linux kernels support bsize aligned direct I/O only
49 [ "$HOSTOS" = "Linux" -a "$kernel" = "2.4" ] && bsize=$psize
50
51 # 2.6 Linux kernels support sector aligned direct I/O only
52 if [ "$HOSTOS" = "Linux" -a "$kernel" = "2.6" ]; then
53         xfs_info $TEST_DIR | _filter_mkfs 2> $tmp.info > /dev/null
54         if [ $? -eq 0 ]; then
55                 source $tmp.info
56                 bsize=$sectsz
57         fi
58 fi
59
60 # fsx usage:
61
62 # -N numops: total # operations to do 
63 # -l flen: the upper bound on file size 
64 # -o oplen: the upper bound on operation size (64k default)
65 # -r readbdy: $psize would make reads page aligned (on i386)
66 # -t truncbdy: $psize would make truncates page aligned (on i386)
67 # -w writebdy: $psize would make writes page aligned (on i386)
68
69 # -Z: O_DIRECT (use -R, -W, -r and -w too)
70 # -R: mapped read operations DISabled
71 # -W: mapped write operations DISabled
72
73 #run_fsx -N 10000            -l 500000 -r $psize -t $psize -w $psize -Z -R -W
74  run_fsx -N 10000            -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
75  run_fsx -N 10000  -o 8192   -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
76 #run_fsx -N 10000  -o 16384  -l 500000 -r $psize -t $psize -w $psize -Z -R -W
77  run_fsx -N 10000  -o 32768  -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
78 #run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $psize -w $psize -Z -R -W
79  run_fsx -N 10000  -o 8192   -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
80 #run_fsx -N 10000  -o 16384  -l 500000 -r $psize -t $psize -w $psize -Z -R -W
81  run_fsx -N 10000  -o 32768  -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
82 #run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $psize -w $psize -Z -W
83  run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $bsize -w $bsize -Z -W
84
85 # Commented out calls above are less likely to pick up issues, so
86 # save time by commenting them out (leave 'em for manual testing).
87
88 status=0
89 exit