From patchwork Wed Dec 27 13:49:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Darrick J. Wong" X-Patchwork-Id: 13508471 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D98EA7EF; Mon, 1 Jan 2024 00:49:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HmlFyddN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A5E68C433C8; Mon, 1 Jan 2024 00:49:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1704070147; bh=9pTCbXpBc5tPtBGAEvC5ixQAphPN9WMTl4OXQX+2itE=; h=Date:Subject:From:To:Cc:In-Reply-To:References:From; b=HmlFyddNI18fOdKd/2loBvrXkzdpopcufbGGiEz4uZiEEGASyL6MxBO4lfyZMSUYw XjGnEZb4GRKgLgkQ1gnNpI181YtFyTJlezOBb5PbRnXzyhuNXv9PZTPDLm8WpYOoR+ ajYbPqYJaiOSXHeLzU/EP7s3GORvRlXXPpZ35lsjGyySFvd+L0QeLMGL4yYO3RwSP9 eAE6rk2Jpzd/YSzdyhwNGi9PLY8O8GrmulmwxXy0ONyo0dzb5CSd1VNRDi4n3uzCQW seW5+x5r59SMKYSRXFEhpE5t+6kqH1uPRg0oqA/gXjnHphwdScD9jzJ+l/c9jCrELu zYugp1pHIw0mw== Date: Sun, 31 Dec 2023 16:49:07 +9900 Subject: [PATCH 11/11] xfs: add parent pointer inject test From: "Darrick J. Wong" To: zlang@redhat.com, djwong@kernel.org Cc: Allison Henderson , Catherine Hoang , fstests@vger.kernel.org, catherine.hoang@oracle.com, allison.henderson@oracle.com, guan@eryu.me, linux-xfs@vger.kernel.org Message-ID: <170405028573.1824869.3091340030856582154.stgit@frogsfrogsfrogs> In-Reply-To: <170405028421.1824869.17871351204326094851.stgit@frogsfrogsfrogs> References: <170405028421.1824869.17871351204326094851.stgit@frogsfrogsfrogs> User-Agent: StGit/0.19 Precedence: bulk X-Mailing-List: fstests@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Allison Henderson Add a test to verify parent pointers after an error injection and log replay. Signed-off-by: Allison Henderson Signed-off-by: Catherine Hoang Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- tests/xfs/1853 | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++ tests/xfs/1853.out | 14 +++++++++ 2 files changed, 99 insertions(+) create mode 100755 tests/xfs/1853 create mode 100644 tests/xfs/1853.out diff --git a/tests/xfs/1853 b/tests/xfs/1853 new file mode 100755 index 0000000000..d5a5050e00 --- /dev/null +++ b/tests/xfs/1853 @@ -0,0 +1,85 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022-2024 Oracle and/or its affiliates. All Rights Reserved. +# +# FS QA Test No. 1853 +# +# parent pointer inject test +# +. ./common/preamble +_begin_fstest auto quick parent + +# get standard environment, filters and checks +. ./common/filter +. ./common/inject +. ./common/parent + +# Modify as appropriate +_supported_fs xfs +_require_scratch +_require_xfs_sysfs debug/larp +_require_xfs_io_error_injection "larp" +_require_xfs_parent +_require_xfs_io_command "parent" + +# real QA test starts here + +# Create a directory tree using a protofile and +# make sure all inodes created have parent pointers + +protofile=$tmp.proto + +cat >$protofile <>$seqres.full 2>&1 \ + || _fail "mkfs failed" +_check_scratch_fs + +_scratch_mount >>$seqres.full 2>&1 \ + || _fail "mount failed" + +testfolder1="testfolder1" +testfolder2="testfolder2" +file4="file4" +file5="file5" + +echo "" + +# Create files +touch $SCRATCH_MNT/$testfolder1/$file4 +_verify_parent "$testfolder1" "$file4" "$testfolder1/$file4" + +# Inject error +_scratch_inject_error "larp" + +# Move files +mv $SCRATCH_MNT/$testfolder1/$file4 $SCRATCH_MNT/$testfolder2/$file5 2>&1 \ + | _filter_scratch + +# FS should be shut down, touch will fail +touch $SCRATCH_MNT/$testfolder2/$file5 2>&1 | _filter_scratch + +# Remount to replay log +_scratch_remount_dump_log >> $seqres.full + +# FS should be online, touch should succeed +touch $SCRATCH_MNT/$testfolder2/$file5 + +# Check files again +_verify_parent "$testfolder2" "$file5" "$testfolder2/$file5" + +# success, all done +status=0 +exit diff --git a/tests/xfs/1853.out b/tests/xfs/1853.out new file mode 100644 index 0000000000..736f6dec00 --- /dev/null +++ b/tests/xfs/1853.out @@ -0,0 +1,14 @@ +QA output created by 1853 + +*** testfolder1 OK +*** testfolder1/file4 OK +*** testfolder1/file4 OK +*** Verified parent pointer: name:file4, namelen:5 +*** Parent pointer OK for child testfolder1/file4 +mv: cannot stat 'SCRATCH_MNT/testfolder1/file4': Input/output error +touch: cannot touch 'SCRATCH_MNT/testfolder2/file5': Input/output error +*** testfolder2 OK +*** testfolder2/file5 OK +*** testfolder2/file5 OK +*** Verified parent pointer: name:file5, namelen:5 +*** Parent pointer OK for child testfolder2/file5