blob: bcdb48822b9b08d18a1462ed979db8c66e7cd3ae [file] [log] [blame]
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2013 Fusion IO. All Rights Reserved.
#
# FS QA Test No. 322
#
# Runs various rename fsync tests to cover some rename fsync corner cases.
#
. ./common/preamble
_begin_fstest auto quick metadata log
# Override the default cleanup function.
_cleanup()
{
_cleanup_flakey
}
# Import common functions.
. ./common/filter
. ./common/dmflakey
# real QA test starts here
_supported_fs generic
_require_scratch_nocheck
_require_dm_target flakey
_clean_working_dir()
{
_mount_flakey
rm -rf $SCRATCH_MNT/foo $SCRATCH_MNT/bar
_unmount_flakey
}
# Btrfs wasn't making sure the new file after rename survived the fsync
_rename_test()
{
echo "fsync rename test"
_mount_flakey
$XFS_IO_PROG -f -c "pwrite 0 1M" -c "fsync" $SCRATCH_MNT/foo \
>> $seqres.full 2>&1
mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
md5sum $SCRATCH_MNT/bar | _filter_scratch
_flakey_drop_and_remount
md5sum $SCRATCH_MNT/bar | _filter_scratch
_unmount_flakey
_check_scratch_fs $FLAKEY_DEV
[ $? -ne 0 ] && _fatal "fsck failed"
}
# Btrfs was dropping some of the modified extents in between fsyncs if we
# renamed.
_write_after_fsync_rename_test()
{
echo "fsync rename test"
_mount_flakey
$XFS_IO_PROG -f -c "pwrite 0 1M" -c "fsync" -c "pwrite 2M 1M" \
-c "sync_range -b 2M 1M" $SCRATCH_MNT/foo >> $seqres.full 2>&1
mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar
$XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
md5sum $SCRATCH_MNT/bar | _filter_scratch
_flakey_drop_and_remount
md5sum $SCRATCH_MNT/bar | _filter_scratch
_unmount_flakey
}
_scratch_mkfs >> $seqres.full 2>&1
_require_metadata_journaling $SCRATCH_DEV
# Create a basic flakey device that will never error out
_init_flakey
_rename_test
_clean_working_dir
_write_after_fsync_rename_test
status=0
exit