All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest
@ 2018-11-20 23:51 Jayashree
  2018-11-21 10:47 ` Filipe Manana
  2018-11-23 10:52 ` Eryu Guan
  0 siblings, 2 replies; 4+ messages in thread
From: Jayashree @ 2018-11-20 23:51 UTC (permalink / raw)
  To: fstests, guaneryu, tytso, david, fdmanana, vijay; +Cc: Jayashree

This patch aims to add more tests to the xfstest suite to check
whether the target file system recovers correctly after a crash.
These test cases are generated by CrashMonkey, a
crash-consistency testing framework built at the SASLab at UT Austin.

This patch batches 37 crash-consistency tests into a xfstest test,
each of which checks the hard link behavior under different scenarios.
This test creates hard-links between files in the same directory or
across directories, while allowing fsync of either the files involved,
their parent directories, or unrelated sibling files. After each sub
test, the metadata of the persisted file is checked for the correct
link count. Additionally, each sub test is followed by fsck to check
for inconsistencies. The tests run on a 256MB file system, and
the working directory is cleaned up after every sub test.

This test has been added to the “auto” group as advised by Eryu.
Once a decision is made about the addition of the new “regress”
group, this test can be moved to the appropriate group.

Signed-off-by: Jayashree Mohan <jaya@cs.utexas.edu>
---
 tests/generic/517     | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/generic/517.out |  75 +++++++++++++++++++++
 tests/generic/group   |   1 +
 3 files changed, 259 insertions(+)
 create mode 100755 tests/generic/517
 create mode 100644 tests/generic/517.out

diff --git a/tests/generic/517 b/tests/generic/517
new file mode 100755
index 0000000..46e82ac
--- /dev/null
+++ b/tests/generic/517
@@ -0,0 +1,183 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2018 The University of Texas at Austin.  All Rights Reserved.
+#
+# FS QA Test 517
+#
+# Test case created by CrashMonkey
+#
+# Test if we create a hard link to a file and persist either of the files, all the names persist.
+#
+seq=`basename $0`
+seqres=$RESULT_DIR/$seq
+echo "QA output created by $seq"
+
+here=`pwd`
+tmp=/tmp/$$
+status=1	# failure is the default!
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+	_cleanup_flakey
+	cd /
+	rm -f $tmp.*
+}
+
+# get standard environment, filters and checks
+. ./common/rc
+. ./common/filter
+. ./common/dmflakey
+
+# 256MB in byte
+fssize=$((2**20 * 256))
+
+# remove previous $seqres.full before test
+rm -f $seqres.full
+
+# real QA test starts here
+_supported_fs generic
+_supported_os Linux
+_require_scratch_nocheck
+_require_dm_target flakey
+
+# initialize scratch device
+_scratch_mkfs_sized $fssize >> $seqres.full 2>&1
+_require_metadata_journaling $SCRATCH_DEV
+_init_flakey
+
+stat_opt='-c "blocks: %b size: %s inode: %i links: %h"'
+before=""
+after=""
+
+
+# Using _scratch_mkfs instead of cleaning up the  working directory,
+# adds about 10 seconds of delay in total for the 37 tests.
+clean_dir()
+{
+	_mount_flakey
+	rm -rf $SCRATCH_MNT/*
+	sync
+	_unmount_flakey
+}
+
+check_consistency()
+{
+	_flakey_drop_and_remount | tee -a $seqres.full
+
+	if [ -f $1 ]; then
+		after=`stat "$stat_opt" $1`
+	fi
+
+	if [ "$before" != "$after" ] && [ $2 -ne 1 ]; then
+		echo "Before: $before"
+		echo "After: $after"
+	fi
+
+	_unmount_flakey
+	_check_scratch_fs $FLAKEY_DEV
+	[ $? -ne 0 ] && _fatal "fsck failed"
+}
+
+# create a hard link $2 to file $1, and fsync $3, followed by power-cut
+test_link_fsync()
+{
+	local sibling=0
+	local src=$SCRATCH_MNT/$1
+	local dest=$SCRATCH_MNT/$2
+	before=""
+	after=""
+
+	if [ "$3" == "./" ]; then
+		fsync=$SCRATCH_MNT
+	else
+		fsync=$SCRATCH_MNT/$3
+	fi
+
+	echo -ne "\n=== link $src $dest  with fsync $fsync ===\n" | _filter_scratch
+	_mount_flakey
+
+	# Now execute the workload
+	# Create the directory in which the source and destination files
+	# will be created
+	mkdir -p "${src%/*}"
+	mkdir -p "${dest%/*}"
+	touch $src
+	ln $src $dest
+
+	# If the file being persisted is a sibling, create it first
+	if [ ! -f $fsync ]; then
+		sibling=1
+		touch $fsync
+	fi
+
+	$XFS_IO_PROG -c "fsync" $fsync
+
+	if [ $sibling -ne 1 ]; then
+		before=`stat "$stat_opt" $src`
+	fi
+
+	check_consistency $src $sibling
+	clean_dir
+}
+
+# create a hard link $2 to file $1, and sync, followed by power-cut
+test_link_sync()
+{
+	local src=$SCRATCH_MNT/$1
+	local dest=$SCRATCH_MNT/$2
+	before=""
+	after=""
+	echo -ne "\n=== link $src $dest  with sync ===\n" | _filter_scratch
+	_mount_flakey
+
+	# now execute the workload
+	# Create the directory in which the source and destination files
+	# will be created
+	mkdir -p "${src%/*}"
+	mkdir -p "${dest%/*}"
+	touch $src
+	ln $src $dest
+	sync
+	before=`stat "$stat_opt" $src`
+
+	check_consistency $src 0
+	clean_dir
+}
+
+
+# Create different combinations to run the link test
+# Group 0: Both files within root directory
+file_names[0]="foo bar"
+fsync_names[0]="./ foo bar"
+
+# Group 1: Create hard link in a sub directory
+file_names[1]="foo A/bar"
+fsync_names[1]="./ foo bar A A/bar A/foo"
+
+# Group 2: Create hard link in parent directory
+file_names[2]="A/foo bar"
+fsync_names[2]="./ foo bar A A/bar A/foo"
+
+# Group 3: Both files within a directory other than root
+file_names[3]="A/foo A/bar"
+fsync_names[3]="./ A A/bar A/foo"
+
+#Group 4: Exercise name reuse : Link file in sub-directory
+file_names[4]="bar A/bar"
+fsync_names[4]="./ foo bar A A/bar A/foo"
+
+#Group 5: Exercise name reuse : Link file in parent directory
+file_names[5]="A/bar bar"
+fsync_names[5]="./ foo bar A A/bar A/foo"
+
+for ((test_group=0; test_group<6; test_group++)); do
+	for file in ${fsync_names[$test_group]}; do
+		test_link_fsync ${file_names[$test_group]} $file
+	done
+	test_link_sync ${file_names[$test_group]}
+done
+
+# success, all done
+status=0
+exit
diff --git a/tests/generic/517.out b/tests/generic/517.out
new file mode 100644
index 0000000..b0d75a1
--- /dev/null
+++ b/tests/generic/517.out
@@ -0,0 +1,75 @@
+QA output created by 517
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with sync ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
+
+=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with sync ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with sync ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
+
+=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with sync ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
+
+=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with sync ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
+
+=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with sync ===
diff --git a/tests/generic/group b/tests/generic/group
index 47de978..f8f061f 100644
--- a/tests/generic/group
+++ b/tests/generic/group
@@ -519,3 +519,4 @@
 514 auto quick clone
 515 auto quick clone
 516 auto quick dedupe clone
+517 auto 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest
  2018-11-20 23:51 [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest Jayashree
@ 2018-11-21 10:47 ` Filipe Manana
  2018-11-23 10:52 ` Eryu Guan
  1 sibling, 0 replies; 4+ messages in thread
From: Filipe Manana @ 2018-11-21 10:47 UTC (permalink / raw)
  To: jaya
  Cc: fstests, Eryu Guan, Theodore Tso, Dave Chinner,
	Vijaychidambaram Velayudhan Pillai

On Tue, Nov 20, 2018 at 11:51 PM Jayashree <jaya@cs.utexas.edu> wrote:
>
> This patch aims to add more tests to the xfstest suite to check
> whether the target file system recovers correctly after a crash.
> These test cases are generated by CrashMonkey, a
> crash-consistency testing framework built at the SASLab at UT Austin.
>
> This patch batches 37 crash-consistency tests into a xfstest test,
> each of which checks the hard link behavior under different scenarios.
> This test creates hard-links between files in the same directory or
> across directories, while allowing fsync of either the files involved,
> their parent directories, or unrelated sibling files. After each sub
> test, the metadata of the persisted file is checked for the correct
> link count. Additionally, each sub test is followed by fsck to check
> for inconsistencies. The tests run on a 256MB file system, and
> the working directory is cleaned up after every sub test.
>
> This test has been added to the “auto” group as advised by Eryu.
> Once a decision is made about the addition of the new “regress”
> group, this test can be moved to the appropriate group.
>
> Signed-off-by: Jayashree Mohan <jaya@cs.utexas.edu>
> ---
>  tests/generic/517     | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++
>  tests/generic/517.out |  75 +++++++++++++++++++++
>  tests/generic/group   |   1 +
>  3 files changed, 259 insertions(+)
>  create mode 100755 tests/generic/517
>  create mode 100644 tests/generic/517.out
>
> diff --git a/tests/generic/517 b/tests/generic/517
> new file mode 100755
> index 0000000..46e82ac
> --- /dev/null
> +++ b/tests/generic/517
> @@ -0,0 +1,183 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +# Copyright (c) 2018 The University of Texas at Austin.  All Rights Reserved.
> +#
> +# FS QA Test 517
> +#
> +# Test case created by CrashMonkey
> +#
> +# Test if we create a hard link to a file and persist either of the files, all the names persist.
> +#
> +seq=`basename $0`
> +seqres=$RESULT_DIR/$seq
> +echo "QA output created by $seq"
> +
> +here=`pwd`
> +tmp=/tmp/$$
> +status=1       # failure is the default!
> +trap "_cleanup; exit \$status" 0 1 2 3 15
> +
> +_cleanup()
> +{
> +       _cleanup_flakey
> +       cd /
> +       rm -f $tmp.*
> +}
> +
> +# get standard environment, filters and checks
> +. ./common/rc
> +. ./common/filter
> +. ./common/dmflakey
> +
> +# 256MB in byte
> +fssize=$((2**20 * 256))
> +
> +# remove previous $seqres.full before test
> +rm -f $seqres.full
> +
> +# real QA test starts here
> +_supported_fs generic
> +_supported_os Linux
> +_require_scratch_nocheck
> +_require_dm_target flakey
> +
> +# initialize scratch device
> +_scratch_mkfs_sized $fssize >> $seqres.full 2>&1
> +_require_metadata_journaling $SCRATCH_DEV
> +_init_flakey
> +
> +stat_opt='-c "blocks: %b size: %s inode: %i links: %h"'
> +before=""
> +after=""
> +
> +
> +# Using _scratch_mkfs instead of cleaning up the  working directory,
> +# adds about 10 seconds of delay in total for the 37 tests.
> +clean_dir()
> +{
> +       _mount_flakey
> +       rm -rf $SCRATCH_MNT/*
> +       sync
> +       _unmount_flakey
> +}
> +
> +check_consistency()
> +{
> +       _flakey_drop_and_remount | tee -a $seqres.full

Does this provide any useful output to redirect to the .full file?
Doesn't seem so.

> +
> +       if [ -f $1 ]; then
> +               after=`stat "$stat_opt" $1`
> +       fi
> +
> +       if [ "$before" != "$after" ] && [ $2 -ne 1 ]; then
> +               echo "Before: $before"
> +               echo "After: $after"
> +       fi
> +
> +       _unmount_flakey
> +       _check_scratch_fs $FLAKEY_DEV
> +       [ $? -ne 0 ] && _fatal "fsck failed"

Not needed. If _check_scratch_fs fails, it will make sure the test fails.

> +}
> +
> +# create a hard link $2 to file $1, and fsync $3, followed by power-cut
> +test_link_fsync()
> +{
> +       local sibling=0
> +       local src=$SCRATCH_MNT/$1
> +       local dest=$SCRATCH_MNT/$2
> +       before=""
> +       after=""
> +
> +       if [ "$3" == "./" ]; then
> +               fsync=$SCRATCH_MNT
> +       else
> +               fsync=$SCRATCH_MNT/$3
> +       fi
> +
> +       echo -ne "\n=== link $src $dest  with fsync $fsync ===\n" | _filter_scratch
> +       _mount_flakey
> +
> +       # Now execute the workload
> +       # Create the directory in which the source and destination files
> +       # will be created
> +       mkdir -p "${src%/*}"
> +       mkdir -p "${dest%/*}"
> +       touch $src
> +       ln $src $dest
> +
> +       # If the file being persisted is a sibling, create it first
> +       if [ ! -f $fsync ]; then
> +               sibling=1
> +               touch $fsync
> +       fi
> +
> +       $XFS_IO_PROG -c "fsync" $fsync
> +
> +       if [ $sibling -ne 1 ]; then
> +               before=`stat "$stat_opt" $src`
> +       fi
> +
> +       check_consistency $src $sibling
> +       clean_dir
> +}
> +
> +# create a hard link $2 to file $1, and sync, followed by power-cut
> +test_link_sync()
> +{
> +       local src=$SCRATCH_MNT/$1
> +       local dest=$SCRATCH_MNT/$2
> +       before=""
> +       after=""
> +       echo -ne "\n=== link $src $dest  with sync ===\n" | _filter_scratch
> +       _mount_flakey
> +
> +       # now execute the workload
> +       # Create the directory in which the source and destination files
> +       # will be created
> +       mkdir -p "${src%/*}"
> +       mkdir -p "${dest%/*}"
> +       touch $src
> +       ln $src $dest
> +       sync
> +       before=`stat "$stat_opt" $src`
> +
> +       check_consistency $src 0
> +       clean_dir
> +}
> +
> +
> +# Create different combinations to run the link test
> +# Group 0: Both files within root directory
> +file_names[0]="foo bar"
> +fsync_names[0]="./ foo bar"
> +
> +# Group 1: Create hard link in a sub directory
> +file_names[1]="foo A/bar"
> +fsync_names[1]="./ foo bar A A/bar A/foo"
> +
> +# Group 2: Create hard link in parent directory
> +file_names[2]="A/foo bar"
> +fsync_names[2]="./ foo bar A A/bar A/foo"
> +
> +# Group 3: Both files within a directory other than root
> +file_names[3]="A/foo A/bar"
> +fsync_names[3]="./ A A/bar A/foo"
> +
> +#Group 4: Exercise name reuse : Link file in sub-directory
> +file_names[4]="bar A/bar"
> +fsync_names[4]="./ foo bar A A/bar A/foo"
> +
> +#Group 5: Exercise name reuse : Link file in parent directory
> +file_names[5]="A/bar bar"
> +fsync_names[5]="./ foo bar A A/bar A/foo"
> +
> +for ((test_group=0; test_group<6; test_group++)); do
> +       for file in ${fsync_names[$test_group]}; do
> +               test_link_fsync ${file_names[$test_group]} $file
> +       done
> +       test_link_sync ${file_names[$test_group]}
> +done
> +
> +# success, all done
> +status=0
> +exit
> diff --git a/tests/generic/517.out b/tests/generic/517.out
> new file mode 100644
> index 0000000..b0d75a1
> --- /dev/null
> +++ b/tests/generic/517.out
> @@ -0,0 +1,75 @@
> +QA output created by 517
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with sync ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with sync ===
> diff --git a/tests/generic/group b/tests/generic/group
> index 47de978..f8f061f 100644
> --- a/tests/generic/group
> +++ b/tests/generic/group
> @@ -519,3 +519,4 @@
>  514 auto quick clone
>  515 auto quick clone
>  516 auto quick dedupe clone
> +517 auto

Should be in the 'log' group as well (like all the other tests using
flakey to test crash recovery).
And probably 'quick' group too, assuming it doesn't take more than 30
seconds or so.

This should also be test 520 now, check every week for fstests updates
(although it's something Eryu usually fixes at commit time as there's
often collisions).

Thanks!

> --
> 2.7.4
>


-- 
Filipe David Manana,

“Whether you think you can, or you think you can't — you're right.”

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest
  2018-11-20 23:51 [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest Jayashree
  2018-11-21 10:47 ` Filipe Manana
@ 2018-11-23 10:52 ` Eryu Guan
  2018-11-28 14:31   ` Filipe Manana
  1 sibling, 1 reply; 4+ messages in thread
From: Eryu Guan @ 2018-11-23 10:52 UTC (permalink / raw)
  To: Jayashree; +Cc: fstests, tytso, david, fdmanana, vijay

On Tue, Nov 20, 2018 at 05:51:04PM -0600, Jayashree wrote:
> This patch aims to add more tests to the xfstest suite to check
> whether the target file system recovers correctly after a crash.
> These test cases are generated by CrashMonkey, a
> crash-consistency testing framework built at the SASLab at UT Austin.
> 
> This patch batches 37 crash-consistency tests into a xfstest test,
> each of which checks the hard link behavior under different scenarios.
> This test creates hard-links between files in the same directory or
> across directories, while allowing fsync of either the files involved,
> their parent directories, or unrelated sibling files. After each sub
> test, the metadata of the persisted file is checked for the correct
> link count. Additionally, each sub test is followed by fsck to check
> for inconsistencies. The tests run on a 256MB file system, and
> the working directory is cleaned up after every sub test.

Looks good to me! Thanks for the revision!

> 
> This test has been added to the “auto” group as advised by Eryu.
> Once a decision is made about the addition of the new “regress”
> group, this test can be moved to the appropriate group.

For now, I think we could also add 'quick' (it runs less than 30s on my
test vm) and 'metadata' group.

The two issues Filipe mentioned are easy to fix, I can fix them on
commit. But I'll let others take a look at this new version first, so
I'll leave it on the list for a while.

Thanks,
Eryu

> 
> Signed-off-by: Jayashree Mohan <jaya@cs.utexas.edu>
> ---
>  tests/generic/520     | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++
>  tests/generic/520.out |  75 +++++++++++++++++++++
>  tests/generic/group   |   1 +
>  3 files changed, 259 insertions(+)
>  create mode 100755 tests/generic/520
>  create mode 100644 tests/generic/520.out
> 
> diff --git a/tests/generic/520 b/tests/generic/520
> new file mode 100755
> index 0000000..46e82ac
> --- /dev/null
> +++ b/tests/generic/520
> @@ -0,0 +1,183 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +# Copyright (c) 2018 The University of Texas at Austin.  All Rights Reserved.
> +#
> +# FS QA Test 520
> +#
> +# Test case created by CrashMonkey
> +#
> +# Test if we create a hard link to a file and persist either of the files, all the names persist.
> +#
> +seq=`basename $0`
> +seqres=$RESULT_DIR/$seq
> +echo "QA output created by $seq"
> +
> +here=`pwd`
> +tmp=/tmp/$$
> +status=1	# failure is the default!
> +trap "_cleanup; exit \$status" 0 1 2 3 15
> +
> +_cleanup()
> +{
> +	_cleanup_flakey
> +	cd /
> +	rm -f $tmp.*
> +}
> +
> +# get standard environment, filters and checks
> +. ./common/rc
> +. ./common/filter
> +. ./common/dmflakey
> +
> +# 256MB in byte
> +fssize=$((2**20 * 256))
> +
> +# remove previous $seqres.full before test
> +rm -f $seqres.full
> +
> +# real QA test starts here
> +_supported_fs generic
> +_supported_os Linux
> +_require_scratch_nocheck
> +_require_dm_target flakey
> +
> +# initialize scratch device
> +_scratch_mkfs_sized $fssize >> $seqres.full 2>&1
> +_require_metadata_journaling $SCRATCH_DEV
> +_init_flakey
> +
> +stat_opt='-c "blocks: %b size: %s inode: %i links: %h"'
> +before=""
> +after=""
> +
> +
> +# Using _scratch_mkfs instead of cleaning up the  working directory,
> +# adds about 10 seconds of delay in total for the 37 tests.
> +clean_dir()
> +{
> +	_mount_flakey
> +	rm -rf $SCRATCH_MNT/*
> +	sync
> +	_unmount_flakey
> +}
> +
> +check_consistency()
> +{
> +	_flakey_drop_and_remount | tee -a $seqres.full
> +
> +	if [ -f $1 ]; then
> +		after=`stat "$stat_opt" $1`
> +	fi
> +
> +	if [ "$before" != "$after" ] && [ $2 -ne 1 ]; then
> +		echo "Before: $before"
> +		echo "After: $after"
> +	fi
> +
> +	_unmount_flakey
> +	_check_scratch_fs $FLAKEY_DEV
> +	[ $? -ne 0 ] && _fatal "fsck failed"
> +}
> +
> +# create a hard link $2 to file $1, and fsync $3, followed by power-cut
> +test_link_fsync()
> +{
> +	local sibling=0
> +	local src=$SCRATCH_MNT/$1
> +	local dest=$SCRATCH_MNT/$2
> +	before=""
> +	after=""
> +
> +	if [ "$3" == "./" ]; then
> +		fsync=$SCRATCH_MNT
> +	else
> +		fsync=$SCRATCH_MNT/$3
> +	fi
> +
> +	echo -ne "\n=== link $src $dest  with fsync $fsync ===\n" | _filter_scratch
> +	_mount_flakey
> +
> +	# Now execute the workload
> +	# Create the directory in which the source and destination files
> +	# will be created
> +	mkdir -p "${src%/*}"
> +	mkdir -p "${dest%/*}"
> +	touch $src
> +	ln $src $dest
> +
> +	# If the file being persisted is a sibling, create it first
> +	if [ ! -f $fsync ]; then
> +		sibling=1
> +		touch $fsync
> +	fi
> +
> +	$XFS_IO_PROG -c "fsync" $fsync
> +
> +	if [ $sibling -ne 1 ]; then
> +		before=`stat "$stat_opt" $src`
> +	fi
> +
> +	check_consistency $src $sibling
> +	clean_dir
> +}
> +
> +# create a hard link $2 to file $1, and sync, followed by power-cut
> +test_link_sync()
> +{
> +	local src=$SCRATCH_MNT/$1
> +	local dest=$SCRATCH_MNT/$2
> +	before=""
> +	after=""
> +	echo -ne "\n=== link $src $dest  with sync ===\n" | _filter_scratch
> +	_mount_flakey
> +
> +	# now execute the workload
> +	# Create the directory in which the source and destination files
> +	# will be created
> +	mkdir -p "${src%/*}"
> +	mkdir -p "${dest%/*}"
> +	touch $src
> +	ln $src $dest
> +	sync
> +	before=`stat "$stat_opt" $src`
> +
> +	check_consistency $src 0
> +	clean_dir
> +}
> +
> +
> +# Create different combinations to run the link test
> +# Group 0: Both files within root directory
> +file_names[0]="foo bar"
> +fsync_names[0]="./ foo bar"
> +
> +# Group 1: Create hard link in a sub directory
> +file_names[1]="foo A/bar"
> +fsync_names[1]="./ foo bar A A/bar A/foo"
> +
> +# Group 2: Create hard link in parent directory
> +file_names[2]="A/foo bar"
> +fsync_names[2]="./ foo bar A A/bar A/foo"
> +
> +# Group 3: Both files within a directory other than root
> +file_names[3]="A/foo A/bar"
> +fsync_names[3]="./ A A/bar A/foo"
> +
> +#Group 4: Exercise name reuse : Link file in sub-directory
> +file_names[4]="bar A/bar"
> +fsync_names[4]="./ foo bar A A/bar A/foo"
> +
> +#Group 5: Exercise name reuse : Link file in parent directory
> +file_names[5]="A/bar bar"
> +fsync_names[5]="./ foo bar A A/bar A/foo"
> +
> +for ((test_group=0; test_group<6; test_group++)); do
> +	for file in ${fsync_names[$test_group]}; do
> +		test_link_fsync ${file_names[$test_group]} $file
> +	done
> +	test_link_sync ${file_names[$test_group]}
> +done
> +
> +# success, all done
> +status=0
> +exit
> diff --git a/tests/generic/520.out b/tests/generic/520.out
> new file mode 100644
> index 0000000..b0d75a1
> --- /dev/null
> +++ b/tests/generic/520.out
> @@ -0,0 +1,75 @@
> +QA output created by 520
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with sync ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with sync ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> +
> +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with sync ===
> -- 
> 2.7.4
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest
  2018-11-23 10:52 ` Eryu Guan
@ 2018-11-28 14:31   ` Filipe Manana
  0 siblings, 0 replies; 4+ messages in thread
From: Filipe Manana @ 2018-11-28 14:31 UTC (permalink / raw)
  To: Eryu Guan
  Cc: jaya, fstests, Theodore Tso, Dave Chinner,
	Vijaychidambaram Velayudhan Pillai

On Fri, Nov 23, 2018 at 10:52 AM Eryu Guan <guaneryu@gmail.com> wrote:
>
> On Tue, Nov 20, 2018 at 05:51:04PM -0600, Jayashree wrote:
> > This patch aims to add more tests to the xfstest suite to check
> > whether the target file system recovers correctly after a crash.
> > These test cases are generated by CrashMonkey, a
> > crash-consistency testing framework built at the SASLab at UT Austin.
> >
> > This patch batches 37 crash-consistency tests into a xfstest test,
> > each of which checks the hard link behavior under different scenarios.
> > This test creates hard-links between files in the same directory or
> > across directories, while allowing fsync of either the files involved,
> > their parent directories, or unrelated sibling files. After each sub
> > test, the metadata of the persisted file is checked for the correct
> > link count. Additionally, each sub test is followed by fsck to check
> > for inconsistencies. The tests run on a 256MB file system, and
> > the working directory is cleaned up after every sub test.
>
> Looks good to me! Thanks for the revision!
>
> >
> > This test has been added to the “auto” group as advised by Eryu.
> > Once a decision is made about the addition of the new “regress”
> > group, this test can be moved to the appropriate group.
>
> For now, I think we could also add 'quick' (it runs less than 30s on my
> test vm) and 'metadata' group.
>
> The two issues Filipe mentioned are easy to fix, I can fix them on
> commit. But I'll let others take a look at this new version first, so
> I'll leave it on the list for a while.

With all those small fixes, if Eryu can do them at commit time, you can have my
Reviewed-by: Filipe Manana <fdmanana@suse.com>

Also some lines are longer than 80 characters, starting the test
description at the
very beginning of the test file for example.
And some minor style issues like this:

for ((test_group=0; test_group<6; test_group++)); do

Adding some spaces before and after operators is much more common in fstests
(thank god, because it's a lot more easier to the eyes), would become:

for ((test_group = 0; test_group < 6; test_group++)); do

All the tests from this test case that are still failing in btrfs are
now fixed by this new patch:

https://patchwork.kernel.org/patch/10702763/

Thanks.
>
> Thanks,
> Eryu
>
> >
> > Signed-off-by: Jayashree Mohan <jaya@cs.utexas.edu>
> > ---
> >  tests/generic/520     | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++
> >  tests/generic/520.out |  75 +++++++++++++++++++++
> >  tests/generic/group   |   1 +
> >  3 files changed, 259 insertions(+)
> >  create mode 100755 tests/generic/520
> >  create mode 100644 tests/generic/520.out
> >
> > diff --git a/tests/generic/520 b/tests/generic/520
> > new file mode 100755
> > index 0000000..46e82ac
> > --- /dev/null
> > +++ b/tests/generic/520
> > @@ -0,0 +1,183 @@
> > +#! /bin/bash
> > +# SPDX-License-Identifier: GPL-2.0
> > +# Copyright (c) 2018 The University of Texas at Austin.  All Rights Reserved.
> > +#
> > +# FS QA Test 520
> > +#
> > +# Test case created by CrashMonkey
> > +#
> > +# Test if we create a hard link to a file and persist either of the files, all the names persist.
> > +#
> > +seq=`basename $0`
> > +seqres=$RESULT_DIR/$seq
> > +echo "QA output created by $seq"
> > +
> > +here=`pwd`
> > +tmp=/tmp/$$
> > +status=1     # failure is the default!
> > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > +
> > +_cleanup()
> > +{
> > +     _cleanup_flakey
> > +     cd /
> > +     rm -f $tmp.*
> > +}
> > +
> > +# get standard environment, filters and checks
> > +. ./common/rc
> > +. ./common/filter
> > +. ./common/dmflakey
> > +
> > +# 256MB in byte
> > +fssize=$((2**20 * 256))
> > +
> > +# remove previous $seqres.full before test
> > +rm -f $seqres.full
> > +
> > +# real QA test starts here
> > +_supported_fs generic
> > +_supported_os Linux
> > +_require_scratch_nocheck
> > +_require_dm_target flakey
> > +
> > +# initialize scratch device
> > +_scratch_mkfs_sized $fssize >> $seqres.full 2>&1
> > +_require_metadata_journaling $SCRATCH_DEV
> > +_init_flakey
> > +
> > +stat_opt='-c "blocks: %b size: %s inode: %i links: %h"'
> > +before=""
> > +after=""
> > +
> > +
> > +# Using _scratch_mkfs instead of cleaning up the  working directory,
> > +# adds about 10 seconds of delay in total for the 37 tests.
> > +clean_dir()
> > +{
> > +     _mount_flakey
> > +     rm -rf $SCRATCH_MNT/*
> > +     sync
> > +     _unmount_flakey
> > +}
> > +
> > +check_consistency()
> > +{
> > +     _flakey_drop_and_remount | tee -a $seqres.full
> > +
> > +     if [ -f $1 ]; then
> > +             after=`stat "$stat_opt" $1`
> > +     fi
> > +
> > +     if [ "$before" != "$after" ] && [ $2 -ne 1 ]; then
> > +             echo "Before: $before"
> > +             echo "After: $after"
> > +     fi
> > +
> > +     _unmount_flakey
> > +     _check_scratch_fs $FLAKEY_DEV
> > +     [ $? -ne 0 ] && _fatal "fsck failed"
> > +}
> > +
> > +# create a hard link $2 to file $1, and fsync $3, followed by power-cut
> > +test_link_fsync()
> > +{
> > +     local sibling=0
> > +     local src=$SCRATCH_MNT/$1
> > +     local dest=$SCRATCH_MNT/$2
> > +     before=""
> > +     after=""
> > +
> > +     if [ "$3" == "./" ]; then
> > +             fsync=$SCRATCH_MNT
> > +     else
> > +             fsync=$SCRATCH_MNT/$3
> > +     fi
> > +
> > +     echo -ne "\n=== link $src $dest  with fsync $fsync ===\n" | _filter_scratch
> > +     _mount_flakey
> > +
> > +     # Now execute the workload
> > +     # Create the directory in which the source and destination files
> > +     # will be created
> > +     mkdir -p "${src%/*}"
> > +     mkdir -p "${dest%/*}"
> > +     touch $src
> > +     ln $src $dest
> > +
> > +     # If the file being persisted is a sibling, create it first
> > +     if [ ! -f $fsync ]; then
> > +             sibling=1
> > +             touch $fsync
> > +     fi
> > +
> > +     $XFS_IO_PROG -c "fsync" $fsync
> > +
> > +     if [ $sibling -ne 1 ]; then
> > +             before=`stat "$stat_opt" $src`
> > +     fi
> > +
> > +     check_consistency $src $sibling
> > +     clean_dir
> > +}
> > +
> > +# create a hard link $2 to file $1, and sync, followed by power-cut
> > +test_link_sync()
> > +{
> > +     local src=$SCRATCH_MNT/$1
> > +     local dest=$SCRATCH_MNT/$2
> > +     before=""
> > +     after=""
> > +     echo -ne "\n=== link $src $dest  with sync ===\n" | _filter_scratch
> > +     _mount_flakey
> > +
> > +     # now execute the workload
> > +     # Create the directory in which the source and destination files
> > +     # will be created
> > +     mkdir -p "${src%/*}"
> > +     mkdir -p "${dest%/*}"
> > +     touch $src
> > +     ln $src $dest
> > +     sync
> > +     before=`stat "$stat_opt" $src`
> > +
> > +     check_consistency $src 0
> > +     clean_dir
> > +}
> > +
> > +
> > +# Create different combinations to run the link test
> > +# Group 0: Both files within root directory
> > +file_names[0]="foo bar"
> > +fsync_names[0]="./ foo bar"
> > +
> > +# Group 1: Create hard link in a sub directory
> > +file_names[1]="foo A/bar"
> > +fsync_names[1]="./ foo bar A A/bar A/foo"
> > +
> > +# Group 2: Create hard link in parent directory
> > +file_names[2]="A/foo bar"
> > +fsync_names[2]="./ foo bar A A/bar A/foo"
> > +
> > +# Group 3: Both files within a directory other than root
> > +file_names[3]="A/foo A/bar"
> > +fsync_names[3]="./ A A/bar A/foo"
> > +
> > +#Group 4: Exercise name reuse : Link file in sub-directory
> > +file_names[4]="bar A/bar"
> > +fsync_names[4]="./ foo bar A A/bar A/foo"
> > +
> > +#Group 5: Exercise name reuse : Link file in parent directory
> > +file_names[5]="A/bar bar"
> > +fsync_names[5]="./ foo bar A A/bar A/foo"
> > +
> > +for ((test_group=0; test_group<6; test_group++)); do
> > +     for file in ${fsync_names[$test_group]}; do
> > +             test_link_fsync ${file_names[$test_group]} $file
> > +     done
> > +     test_link_sync ${file_names[$test_group]}
> > +done
> > +
> > +# success, all done
> > +status=0
> > +exit
> > diff --git a/tests/generic/520.out b/tests/generic/520.out
> > new file mode 100644
> > index 0000000..b0d75a1
> > --- /dev/null
> > +++ b/tests/generic/520.out
> > @@ -0,0 +1,75 @@
> > +QA output created by 520
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/bar  with sync ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> > +
> > +=== link SCRATCH_MNT/foo SCRATCH_MNT/A/bar  with sync ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/bar  with sync ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> > +
> > +=== link SCRATCH_MNT/A/foo SCRATCH_MNT/A/bar  with sync ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/foo ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/bar ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/bar ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with fsync SCRATCH_MNT/A/foo ===
> > +
> > +=== link SCRATCH_MNT/bar SCRATCH_MNT/A/bar  with sync ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/foo ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/bar ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/bar ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with fsync SCRATCH_MNT/A/foo ===
> > +
> > +=== link SCRATCH_MNT/A/bar SCRATCH_MNT/bar  with sync ===
> > --
> > 2.7.4
> >



-- 
Filipe David Manana,

“Whether you think you can, or you think you can't — you're right.”

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-11-29  1:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-20 23:51 [PATCH] fstest: CrashMonkey 'hard link' tests ported to xfstest Jayashree
2018-11-21 10:47 ` Filipe Manana
2018-11-23 10:52 ` Eryu Guan
2018-11-28 14:31   ` Filipe Manana

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.