Files
apfstests/tests/xfs/440
T
Dave Chinner 2529c9486a xfs: convert tests to SPDX license tags
Fully scripted conversion, see script in initial SPDX license commit
message.

tests/xfs/044 was hand massaged to remove duplicate copyright and
divider lines before running the script.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
2018-06-09 11:35:45 +10:00

79 lines
1.9 KiB
Bash
Executable File

#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2018 Oracle, Inc. All Rights Reserved.
#
# FS QA Test No. 440
#
# Regression test for a quota accounting bug when changing the owner of
# a file that has CoW reservations and no dirty pages. The reservations
# should shift over to the new owner, but they do not.
#
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()
{
cd /
rm -f $tmp.*
}
# get standard environment, filters and checks
. ./common/rc
. ./common/reflink
. ./common/quota
. ./common/filter
# Modify as appropriate.
_supported_fs xfs
_supported_os Linux
_require_quota
_require_scratch_reflink
_require_cp_reflink
_require_user
rm -f $seqres.full
echo "Format and mount"
_scratch_mkfs > "$seqres.full" 2>&1
_scratch_mount "-o usrquota,grpquota" >> "$seqres.full" 2>&1
echo "Create files"
$XFS_IO_PROG -c "cowextsize 1m" $SCRATCH_MNT
touch $SCRATCH_MNT/a $SCRATCH_MNT/force_fsgqa
chown $qa_user $SCRATCH_MNT/a $SCRATCH_MNT/force_fsgqa
_pwrite_byte 0x58 0 64k $SCRATCH_MNT/a >> $seqres.full
$XFS_IO_PROG -c 'stat -r' $SCRATCH_MNT/a | grep stat.size >> $seqres.full
_report_quota_blocks "-u $SCRATCH_MNT"
echo "Reflink and CoW"
_cp_reflink $SCRATCH_MNT/a $SCRATCH_MNT/b
_pwrite_byte 0x59 0 64k $SCRATCH_MNT/a >> $seqres.full
$XFS_IO_PROG -c 'stat -r' $SCRATCH_MNT/a | grep stat.size >> $seqres.full
_report_quota_blocks "-u $SCRATCH_MNT"
echo "Sync"
sync
_report_quota_blocks "-u $SCRATCH_MNT"
echo "Chown and check quota"
chown root $SCRATCH_MNT/a
$XFS_IO_PROG -c 'stat -r' $SCRATCH_MNT/a | grep stat.size >> $seqres.full
_report_quota_blocks "-u $SCRATCH_MNT"
echo "Remount"
_scratch_unmount
_scratch_mount "-o usrquota,grpquota" >> "$seqres.full" 2>&1
$XFS_IO_PROG -c 'stat -r' $SCRATCH_MNT/a | grep stat.size >> $seqres.full
_report_quota_blocks "-u $SCRATCH_MNT"
# success, all done
status=0
exit