mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
2529c9486a
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>
74 lines
1.7 KiB
Bash
Executable File
74 lines
1.7 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2018 Oracle, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 441
|
|
#
|
|
# Regression test for a quota accounting bug when reflinking across EOF
|
|
# of a file in which we forgot dq_attach.
|
|
#
|
|
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
|
|
|
|
check_quota() {
|
|
du_total="$(du -ksc $SCRATCH_MNT/a $SCRATCH_MNT/b | tail -n 1 | awk '{print $1}')"
|
|
qu_total="$(_report_quota_blocks "-u $SCRATCH_MNT" | grep $qa_user | awk '{print $2}')"
|
|
echo "du: $du_total; quota: $qu_total"
|
|
}
|
|
|
|
echo "Format and mount (noquota)"
|
|
_scratch_mkfs > "$seqres.full" 2>&1
|
|
_scratch_mount "-o noquota" >> $seqres.full 2>&1
|
|
|
|
echo "Create files"
|
|
_pwrite_byte 0x58 0 1m $SCRATCH_MNT/a >> $seqres.full
|
|
_pwrite_byte 0x58 0 1m $SCRATCH_MNT/b >> $seqres.full
|
|
chown $qa_user $SCRATCH_MNT/a $SCRATCH_MNT/b
|
|
check_quota 2>&1 | _filter_scratch
|
|
|
|
echo "Mount (usrquota) and check quota"
|
|
_scratch_unmount
|
|
_scratch_mount "-o usrquota,grpquota" >> "$seqres.full" 2>&1
|
|
check_quota
|
|
|
|
echo "Reflink and check quota again"
|
|
_reflink_range $SCRATCH_MNT/a 256k $SCRATCH_MNT/b 384k 128k >> $seqres.full
|
|
_reflink_range $SCRATCH_MNT/a 256k $SCRATCH_MNT/b 960k 128k >> $seqres.full
|
|
check_quota
|
|
|
|
echo "Force quotacheck"
|
|
_check_quota_usage
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|