generic/233,270: unlimit the max locked memory size for io_uring
[xfstests-dev.git] / tests / xfs / 240
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 240
6 #
7 # Test AIO CoW behavior when the write temporarily fails.
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20     cd /
21     rm -rf $tmp.* $TEST_DIR/moo
22     _dmerror_cleanup
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/reflink
29 . ./common/dmerror
30
31 # real QA test starts here
32 _supported_fs xfs
33 _require_scratch_reflink
34 _require_cp_reflink
35 _require_dm_target error
36 _require_xfs_io_command "cowextsize"
37 _require_aiodio "aiocp"
38 AIO_TEST="$here/src/aio-dio-regress/aiocp"
39
40 rm -f $seqres.full
41
42
43 echo "Format and mount"
44 _scratch_mkfs > $seqres.full 2>&1
45 _dmerror_init
46 _dmerror_mount >> $seqres.full 2>&1
47
48 testdir=$SCRATCH_MNT/test-$seq
49 mkdir $testdir
50
51 blksz=65536
52 nr=640
53 bufnr=128
54 filesize=$((blksz * nr))
55 bufsize=$((blksz * bufnr))
56 filesize=$filesize
57 bufsize=$bufsize
58
59 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
60
61 echo "Create the original files"
62 $XFS_IO_PROG -c "cowextsize $((bufsize * 2))" $testdir
63 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file1 >> $seqres.full
64 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
65 _dmerror_unmount
66 _dmerror_mount
67
68 echo "Compare files"
69 md5sum $testdir/file1 | _filter_scratch
70 md5sum $testdir/file2 | _filter_scratch
71
72 echo "CoW and unmount"
73 $XFS_IO_PROG -f -c "pwrite -S 0x63 $bufsize 1" $testdir/file2 >> $seqres.full
74 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $bufsize 0 $filesize" $TEST_DIR/moo >> $seqres.full
75 sync
76 _dmerror_load_error_table
77 $AIO_TEST -b $bufsize $TEST_DIR/moo $testdir/file2 >> $seqres.full
78 $XFS_IO_PROG -c "fdatasync" $testdir/file2
79 _dmerror_load_working_table
80 _dmerror_unmount
81 _dmerror_mount
82
83 echo "Compare files"
84 md5sum $testdir/file1 | _filter_scratch
85 md5sum $testdir/file2 | _filter_scratch
86
87 echo "Check for damage"
88 _dmerror_unmount
89 _dmerror_cleanup
90 _repair_scratch_fs >> $seqres.full
91
92 # success, all done
93 status=0
94 exit