mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
09e94f84d9
The always_cow mode can't usefull preallocate space gіven that it always has to write out of place, and thus will reject falloc or ioctl calls to preallocate space in a file. Add explicit checks for preallocation support in various XFS-specific tests to support this. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eryu Guan <guaneryu@gmail.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
56 lines
1.2 KiB
Bash
Executable File
56 lines
1.2 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 084
|
|
#
|
|
# Exercises unwritten extent reads and writes, looking
|
|
# for data corruption (zeroes read) near the end of file.
|
|
#
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
|
|
here=`pwd`
|
|
tmp=/tmp/$$
|
|
status=1 # failure is the default!
|
|
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
|
|
_filter_resv()
|
|
{
|
|
_filter_test_dir | sed -e 's/[0-9][0-9]* bytes/NUM bytes/g'
|
|
}
|
|
|
|
pgsize=`$here/src/feature -s`
|
|
|
|
# -i == number of iterations
|
|
# -l == bytes to leak on each iteration
|
|
# -b == read/write block size
|
|
# -s == preallocation size
|
|
|
|
# real QA test starts here
|
|
_supported_fs xfs
|
|
_supported_os Linux
|
|
_require_xfs_io_command "falloc"
|
|
_require_test
|
|
|
|
echo
|
|
echo "*** First case - I/O blocksize same as pagesize"
|
|
$here/src/resvtest -i 20 -b $pgsize "$TEST_DIR/resv" | _filter_resv
|
|
[ $? -eq 0 ] && echo done
|
|
rm -f "$TEST_DIR/mumble"
|
|
|
|
echo
|
|
echo "*** Second case - 512 byte I/O blocksize"
|
|
$here/src/resvtest -i 40 -b 512 "$TEST_DIR/resv" | _filter_resv
|
|
[ $? -eq 0 ] && echo done
|
|
rm -f "$TEST_DIR/grumble"
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|