generic: test MADV_POPULATE_READ with IO errors
[xfstests-dev.git] / tests / xfs / 340
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. 340
6 #
7 # Set rrmapino to another inode on an rtrmap fs and see if repair fixes it.
8 #
9 . ./common/preamble
10 _begin_fstest auto quick rmap realtime
11
12 # Import common functions.
13 . ./common/filter
14
15 # real QA test starts here
16 _supported_fs xfs
17 _require_realtime
18 _require_xfs_scratch_rmapbt
19
20 rm -f "$seqres.full"
21
22 echo "Format and mount"
23 _scratch_mkfs > "$seqres.full" 2>&1
24 _scratch_mount
25
26 echo "Create some files"
27 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f1 >> $seqres.full
28 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f2 >> $seqres.full
29 echo garbage > $SCRATCH_MNT/f3
30 ino=$(stat -c '%i' $SCRATCH_MNT/f3)
31 _scratch_unmount
32
33 echo "Corrupt fs"
34 rrmapino=$(_scratch_xfs_get_sb_field rrmapino)
35 _scratch_xfs_db -x -c "inode $rrmapino" \
36         -c 'write core.format 2' -c 'write core.size 0' \
37         -c 'write core.nblocks 0' -c 'sb 0' -c 'addr rootino' \
38         -c "write u3.sfdir3.list[2].inumber.i4 $rrmapino" \
39         -c 'sb 0' -c "write rrmapino $ino" >> $seqres.full
40 _try_scratch_mount >> $seqres.full 2>&1 && echo "mount should have failed"
41
42 echo "Repair fs"
43 _scratch_unmount 2>&1 | _filter_scratch
44 _repair_scratch_fs >> $seqres.full 2>&1
45
46 echo "Try to create more files (again)"
47 _scratch_mount
48 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full
49
50 # success, all done
51 status=0
52 exit