xfs/realtime: add _require_no_rtinherit function
[xfstests-dev.git] / tests / generic / 252
1 #! /bin/bash
2 # FS QA Test No. 252
3 #
4 # Create an unwritten extent, set up dm-error, try an AIO DIO write, then
5 # make sure we can't read back old disk contents.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -rf $tmp.* $testdir $TEST_DIR/moo
37     _dmerror_cleanup
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/dmerror
44
45 # real QA test starts here
46 _supported_os Linux
47 _require_scratch
48 _require_dm_target error
49 _require_xfs_io_command "falloc"
50 # This test uses "dm" without taking into account the data could be on
51 # realtime subvolume, thus the test will fail with rtinherit=1
52 _require_no_rtinherit
53 _require_aiodio "aiocp"
54 AIO_TEST="src/aio-dio-regress/aiocp"
55
56 rm -f $seqres.full
57
58
59 echo "Format and mount"
60 $XFS_IO_PROG -d -c "pwrite -S 0x69 -b 1048576 0 $((64 * 1048576))" $SCRATCH_DEV >> $seqres.full
61 _scratch_mkfs_sized $((64 * 1048576)) > $seqres.full 2>&1
62 _dmerror_init
63 _dmerror_mount >> $seqres.full 2>&1
64 _dmerror_unmount
65 _dmerror_mount
66
67 testdir=$SCRATCH_MNT/test-$seq
68 mkdir $testdir
69
70 blksz=65536
71 nr=640
72 bufnr=128
73 filesize=$((blksz * nr))
74 bufsize=$((blksz * bufnr))
75
76 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 5 / 4))
77
78 echo "Create the original files"
79 $XFS_IO_PROG -f -c "falloc 0 $filesize" $testdir/file2 >> $seqres.full
80 _dmerror_unmount
81 _dmerror_mount
82
83 echo "Compare files"
84 md5sum $testdir/file2 | _filter_scratch
85
86 echo "CoW and unmount"
87 $XFS_IO_PROG -f -c "pwrite -S 0x63 $bufsize 1" $testdir/file2 >> $seqres.full
88 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $bufsize 0 $filesize" $TEST_DIR/moo >> $seqres.full
89 sync
90 _dmerror_load_error_table
91 $AIO_TEST -f DIRECT -b $bufsize $TEST_DIR/moo $testdir/file2 >> $seqres.full
92 _dmerror_load_working_table
93 _dmerror_unmount
94 _dmerror_mount
95
96 echo "Compare files"
97 md5sum $testdir/file2 | _filter_scratch
98
99 echo "Check for damage"
100 _dmerror_unmount
101 _dmerror_cleanup
102 _repair_scratch_fs >> $seqres.full
103
104 # success, all done
105 status=0
106 exit