blob: 8ca4e7d1c59a05c9b8b73a4316211422ee2712b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2018 Red Hat Inc. All Rights Reserved.
#
# FS QA Test 451
#
# Make sure xfs_repair can repair root inode parent's pointer
# when it contains a bogus ino when it's using shot form directory
. ./common/preamble
_begin_fstest auto quick metadata repair
# Import common functions.
. ./common/filter
echo "Silence is golden"
# real QA test starts here
# Modify as appropriate.
_supported_fs xfs
_require_scratch
_scratch_mkfs >> /dev/null 2>&1
rootino=$(_scratch_xfs_get_metadata_field 'rootino' 'sb 0')
prefix=$(_scratch_get_sfdir_prefix ${rootino} || \
_fail "Cannot determine sfdir prefix")
# Corrupt root inode parent pointer
_scratch_xfs_set_metadata_field "${prefix}.hdr.parent.i4" 0 "inode ${rootino}"\
>> $seqres.full 2>&1
_scratch_xfs_repair >> $seqres.full 2>&1
# Post-test integrity check will detect any remaining corruption
status=0
exit
|