linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4] btrfs-progs: fsck-tests: verify 'btrfs check --repair' fixes corrupted nlink field
@ 2017-04-15  9:12 Lakshmipathi.G
  0 siblings, 0 replies; only message in thread
From: Lakshmipathi.G @ 2017-04-15  9:12 UTC (permalink / raw)
  To: linux-btrfs, quwenruo, dsterba

commit 5cdcc57b8d599f03fe692e0285ee9e17f32267fa
Author: Lakshmipathi.G <Lakshmipathi.G@giis.co.in>
Date:   Sat Apr 15 14:26:20 2017 +0530

    btrfs-progs: fsck-tests: verify 'btrfs check --repair' fixes corrupted nlink field
    
    Signed-off-by: Lakshmipathi.G <Lakshmipathi.G@giis.co.in>

diff --git a/tests/fsck-tests/026-check-inode-link/test.sh b/tests/fsck-tests/026-check-inode-link/test.sh
new file mode 100755
index 0000000..3a7a3c1
--- /dev/null
+++ b/tests/fsck-tests/026-check-inode-link/test.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+# verify that 'btrfs check --repair' fixes corrupted inode nlink field
+
+source $TOP/tests/common
+
+check_prereq btrfs-corrupt-block
+check_prereq mkfs.btrfs
+
+setup_root_helper
+prepare_test_dev
+
+test_inode_nlink_field()
+{
+	run_check $SUDO_HELPER "$TOP/mkfs.btrfs" -f "$TEST_DEV"
+
+	run_check_mount_test_dev
+	run_check $SUDO_HELPER touch "$TEST_MNT/test_nlink.txt"
+
+	# find inode_number
+	inode_number=`stat -c%i "$TEST_MNT/test_nlink.txt"`
+	run_check_umount_test_dev
+
+	# corrupt nlink field of inode object
+        run_check $SUDO_HELPER "$TOP/btrfs-corrupt-block" -i "$inode_number" \
+		-f nlink "$TEST_DEV"
+
+	check_image "$TEST_DEV"
+
+	# verify link count
+	run_check_mount_test_dev
+	link_count=`stat -c%h "$TEST_MNT/test_nlink.txt"`
+	run_check_umount_test_dev
+	if [ "$link_count" != 1 ];then
+		_fail "btrfs check --repair: Unable to fix nlink corruption."
+	fi
+}
+
+test_inode_nlink_field

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-15  9:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-15  9:12 [PATCH v4] btrfs-progs: fsck-tests: verify 'btrfs check --repair' fixes corrupted nlink field Lakshmipathi.G

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).