generic: add _require_odirect to generic/113 and generic/214
[xfstests-dev.git] / tests / generic / 009
1 #! /bin/bash
2 # FS QA Test No. 009
3 #
4 # Test fallocate FALLOC_FL_ZERO_RANGE
5 #
6 #-----------------------------------------------------------------------
7 # Copyright 2014 (C) Red Hat, Inc., Lukas Czerner <lczerner@redhat.com>
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
33 _cleanup()
34 {
35     rm -f $tmp.*
36 }
37
38 trap "_cleanup ; exit \$status" 0 1 2 3 15
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/punch
44
45 # real QA test starts here
46 _supported_os Linux
47 _require_xfs_io_command "fzero"
48 _require_test
49
50 testfile=$TEST_DIR/009.$$
51
52 # Disable extent zeroing for ext4 as that change where holes are created
53 if [ "$FSTYP" = "ext4" ]; then
54         DEV=`_short_dev $TEST_DEV`
55         echo 0 >/sys/fs/ext4/$DEV/extent_max_zeroout_kb
56 fi
57
58 # When PAGE_SIZE > 4096 xfs extent layout is different so it would not match
59 # the output.
60 if [ "$FSTYP" = "xfs" ]; then
61         PAGE_SIZE=`getconf PAGE_SIZE`
62         if [ $PAGE_SIZE -gt 4096 ]; then
63                 _notrun "Not supported on xfs with page size > 4096"
64         fi
65 fi
66
67 # Standard zero range tests
68 _test_generic_punch falloc fzero fzero fiemap _filter_fiemap $testfile
69
70 # Delayed allocation zero range tests
71 _test_generic_punch -d falloc fzero fzero fiemap _filter_fiemap $testfile
72
73 # Multi zero range tests
74 _test_generic_punch -k falloc fzero fzero fiemap _filter_fiemap $testfile
75
76 # Delayed allocation multi zero range tests
77 _test_generic_punch -d -k falloc fzero fzero fiemap _filter_fiemap $testfile
78
79 status=0 ; exit