generic: test MADV_POPULATE_READ with IO errors
[xfstests-dev.git] / tests / xfs / 338
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. 338
6 #
7 # Set rrmapino to zero 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 _scratch_unmount
30
31 echo "Corrupt fs"
32 _scratch_xfs_db -x -c 'sb 0' -c 'addr rrmapino' \
33         -c 'write core.nlinkv2 0' -c 'write core.mode 0' -c 'sb 0' \
34         -c 'write rrmapino 0' >> $seqres.full
35 _try_scratch_mount >> $seqres.full 2>&1 && echo "mount should have failed"
36
37 echo "Repair fs"
38 _scratch_unmount 2>&1 | _filter_scratch
39 _repair_scratch_fs >> $seqres.full 2>&1
40
41 echo "Try to create more files (again)"
42 _scratch_mount
43 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full
44
45 # success, all done
46 status=0
47 exit