Files
apfstests/tests/generic/274
T

87 lines
2.4 KiB
Bash
Raw Normal View History

2011-11-08 11:41:08 +08:00
#! /bin/bash
2018-06-09 11:35:42 +10:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2011-2012 Fujitsu, Inc. All Rights Reserved.
#
2011-11-08 11:41:08 +08:00
# FS QA Test No. 274
#
2012-05-15 15:20:05 -05:00
# preallocation test:
# Preallocate space to a file, and fill the rest of the fs to 100%.
# Then test a write into that preallocated space, which should succeed.
2011-11-08 11:41:08 +08:00
#
#creator
seq=`basename $0`
seqres=$RESULT_DIR/$seq
2011-11-08 11:41:08 +08:00
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
status=0 # success is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
_cleanup()
{
cd /
2012-05-15 15:20:05 -05:00
rm -f $tmp.*
2011-11-08 11:41:08 +08:00
_scratch_unmount
}
2013-03-15 12:28:04 +00:00
. ./common/rc
. ./common/filter
2011-11-08 11:41:08 +08:00
# real QA test starts here
_supported_fs generic
_supported_os Linux
2011-11-08 11:41:08 +08:00
_require_scratch
_require_xfs_io_command "falloc" "-k"
2011-11-08 11:41:08 +08:00
echo "------------------------------"
echo "preallocation test"
echo "------------------------------"
rm -f $seqres.full
2011-11-08 11:41:08 +08:00
2015-12-21 18:07:43 +11:00
_scratch_unmount 2>/dev/null
2013-06-21 20:31:10 +00:00
_scratch_mkfs_sized $((2 * 1024 * 1024 * 1024)) >>$seqres.full 2>&1
2011-11-08 11:41:08 +08:00
_scratch_mount
2012-05-15 15:20:05 -05:00
# Create a 4k file and Allocate 4M past EOF on that file
$XFS_IO_PROG -f -c "pwrite 0 4k" -c "falloc -k 4k 4m" $SCRATCH_MNT/test \
>>$seqres.full 2>&1 || _fail "failed to create test file"
2011-11-08 11:41:08 +08:00
2012-05-15 15:20:05 -05:00
# Fill the rest of the fs completely
# Note, this will show ENOSPC errors in $seqres.full, that's ok.
echo "Fill fs with 1M IOs; ENOSPC expected" >> $seqres.full
dd if=/dev/zero of=$SCRATCH_MNT/tmp1 bs=1M >>$seqres.full 2>&1
echo "Fill fs with 4K IOs; ENOSPC expected" >> $seqres.full
dd if=/dev/zero of=$SCRATCH_MNT/tmp2 bs=4K >>$seqres.full 2>&1
2011-11-08 11:41:08 +08:00
sync
2012-05-15 15:20:05 -05:00
# Last effort, use O_SYNC
echo "Fill fs with 4K DIOs; ENOSPC expected" >> $seqres.full
dd if=/dev/zero of=$SCRATCH_MNT/tmp3 bs=4K oflag=sync >>$seqres.full 2>&1
2012-05-15 15:20:05 -05:00
# Save space usage info
echo "Post-fill space:" >> $seqres.full
df $SCRATCH_MNT >>$seqres.full 2>&1
2011-11-08 11:41:08 +08:00
2012-05-15 15:20:05 -05:00
# Now attempt a write into all of the preallocated space -
# in a very nasty way, badly fragmenting it and then filling it in.
echo "Fill in prealloc space; fragment at offsets:" >> $seqres.full
2012-05-15 15:20:05 -05:00
for i in `seq 1 2 1023`; do
echo -n "$i " >> $seqres.full
2012-05-15 15:20:05 -05:00
dd if=/dev/zero of=$SCRATCH_MNT/test seek=$i bs=4K count=1 conv=notrunc \
>>$seqres.full 2>/dev/null || _fail "failed to write to test file"
2012-05-15 15:20:05 -05:00
done
sync
echo >> $seqres.full
echo "Fill in prealloc space; fill holes at offsets:" >> $seqres.full
2012-05-15 15:20:05 -05:00
for i in `seq 2 2 1023`; do
echo -n "$i " >> $seqres.full
2012-05-15 15:20:05 -05:00
dd if=/dev/zero of=$SCRATCH_MNT/test seek=$i bs=4K count=1 conv=notrunc \
>>$seqres.full 2>/dev/null || _fail "failed to fill test file"
2012-05-15 15:20:05 -05:00
done
sync
echo >> $seqres.full
2011-11-08 11:41:08 +08:00
echo "done"
exit