2013-12-03 10:29:36 +11:00
|
|
|
#! /bin/bash
|
2018-06-09 11:35:42 +10:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
# Copyright (c) 2013 Fusion IO. All Rights Reserved.
|
|
|
|
|
#
|
2013-12-03 10:29:36 +11:00
|
|
|
# FS QA Test No. 321
|
|
|
|
|
#
|
|
|
|
|
# Runs various dir fsync tests to cover fsync'ing directory corner cases.
|
|
|
|
|
#
|
|
|
|
|
seq=`basename $0`
|
|
|
|
|
seqres=$RESULT_DIR/$seq
|
|
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
|
|
|
|
_cleanup_flakey
|
|
|
|
|
}
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
|
. ./common/rc
|
|
|
|
|
. ./common/filter
|
|
|
|
|
. ./common/dmflakey
|
|
|
|
|
|
|
|
|
|
# real QA test starts here
|
|
|
|
|
_supported_fs generic
|
|
|
|
|
_supported_os Linux
|
2014-09-08 20:48:45 +10:00
|
|
|
_require_scratch_nocheck
|
2015-10-14 14:08:42 +11:00
|
|
|
_require_dm_target flakey
|
2013-12-03 10:29:36 +11:00
|
|
|
|
|
|
|
|
rm -f $seqres.full
|
|
|
|
|
|
|
|
|
|
_clean_working_dir()
|
|
|
|
|
{
|
|
|
|
|
_mount_flakey
|
2014-01-20 12:48:33 +11:00
|
|
|
rm -rf $SCRATCH_MNT/foo $SCRATCH_MNT/bar
|
2013-12-03 10:29:36 +11:00
|
|
|
_unmount_flakey
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Btrfs wasn't making sure the directory survived fsync
|
|
|
|
|
_directory_test()
|
|
|
|
|
{
|
|
|
|
|
echo "fsync new directory"
|
|
|
|
|
_mount_flakey
|
|
|
|
|
mkdir $SCRATCH_MNT/bar
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
|
|
|
|
|
|
2015-11-17 08:41:32 +11:00
|
|
|
_flakey_drop_and_remount
|
|
|
|
|
|
2013-12-03 10:29:36 +11:00
|
|
|
_ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
|
|
|
|
|
_unmount_flakey
|
|
|
|
|
_check_scratch_fs $FLAKEY_DEV
|
|
|
|
|
[ $? -ne 0 ] && _fatal "fsck failed"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Btrfs was losing a rename into a new directory
|
|
|
|
|
_rename_test()
|
|
|
|
|
{
|
|
|
|
|
echo "rename fsync test"
|
|
|
|
|
_mount_flakey
|
|
|
|
|
touch $SCRATCH_MNT/foo
|
|
|
|
|
mkdir $SCRATCH_MNT/bar
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/foo
|
|
|
|
|
mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar/foo
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar/foo
|
|
|
|
|
|
2015-11-17 08:41:32 +11:00
|
|
|
_flakey_drop_and_remount\
|
|
|
|
|
|
2013-12-03 10:29:36 +11:00
|
|
|
_ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
|
|
|
|
|
_ls_l $SCRATCH_MNT/bar | tail -n +2 | awk '{ print $1, $9 }'
|
|
|
|
|
_unmount_flakey
|
|
|
|
|
_check_scratch_fs $FLAKEY_DEV
|
|
|
|
|
[ $? -ne 0 ] && _fatal "fsck failed"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Btrfs was failing to replay a log when we had a inode with a smaller inode
|
|
|
|
|
# number that is renamed into a directory with a higher inode number
|
|
|
|
|
_replay_rename_test()
|
|
|
|
|
{
|
|
|
|
|
echo "replay rename fsync test"
|
|
|
|
|
_mount_flakey
|
|
|
|
|
touch $SCRATCH_MNT/foo
|
|
|
|
|
mkdir $SCRATCH_MNT/bar
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/foo
|
|
|
|
|
mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar/foo
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
|
|
|
|
|
|
|
|
|
|
# This is to force btrfs to relog the entire inode including the ref so
|
|
|
|
|
# we are sure to try and replay the ref along with the dir_index item
|
|
|
|
|
setfattr -n user.foo -v blah $SCRATCH_MNT/bar/foo >> $seqres.full 2>&1
|
|
|
|
|
|
|
|
|
|
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar/foo
|
|
|
|
|
|
2015-11-17 08:41:32 +11:00
|
|
|
_flakey_drop_and_remount
|
|
|
|
|
|
2013-12-03 10:29:36 +11:00
|
|
|
_ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
|
|
|
|
|
_ls_l $SCRATCH_MNT/bar | tail -n +2 | awk '{ print $1, $9 }'
|
|
|
|
|
_unmount_flakey
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_scratch_mkfs >> $seqres.full 2>&1
|
2017-08-24 16:17:38 +02:00
|
|
|
_require_metadata_journaling $SCRATCH_DEV
|
2013-12-03 10:29:36 +11:00
|
|
|
|
|
|
|
|
# Create a basic flakey device that will never error out
|
|
|
|
|
_init_flakey
|
|
|
|
|
|
|
|
|
|
_directory_test
|
|
|
|
|
_clean_working_dir
|
|
|
|
|
_rename_test
|
|
|
|
|
_clean_working_dir
|
|
|
|
|
_replay_rename_test
|
|
|
|
|
|
|
|
|
|
status=0
|
|
|
|
|
exit
|