@@ -34,6 +34,7 @@ iodepth=$((16 * LOAD_FACTOR))
iodepth_batch=$((8 * LOAD_FACTOR))
numjobs=$((5 * LOAD_FACTOR))
fio_config=$tmp.fio
+fio_out=$tmp.fio.out
cat >$fio_config <<EOF
[global]
bs=8k
@@ -101,7 +102,8 @@ _scratch_mount
# There's a known EIO failure to report collisions between directio and buffered
# writes to userspace, refer to upstream linux 5a9d929d6e13. So ignore EIO error
# at here.
-$FIO_PROG $fio_config --ignore_error=,EIO --output=$seqres.full
+$FIO_PROG $fio_config --ignore_error=,EIO --output=$fio_out
+cat $fio_out >> $seqres.full
echo "Silence is golden"
# xfs generates WARNINGs on purpose when applications mix buffered/mmap IO with
@@ -15,8 +15,14 @@ echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
fio_config=$tmp.fio
+fio_out=$tmp.fio.out
status=1 # failure is the default!
-trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+ rm -f $tmp.*
+}
# get standard environment, filters and checks
. ./common/rc
@@ -27,6 +33,7 @@ _supported_fs generic
_require_test
_require_scratch
_require_odirect
+_require_aio
_require_block_device $SCRATCH_DEV
NUM_JOBS=$((4*LOAD_FACTOR))
@@ -104,47 +111,35 @@ rm -f $seqres.full
_require_fio $fio_config
_require_xfs_io_command "falloc"
-_workout()
-{
- echo ""
- echo "Run fio with random aio-dio pattern"
- echo ""
- cat $fio_config >> $seqres.full
- run_check $FIO_PROG $fio_config &
- pid=$!
- echo "Start fallocate/truncate loop"
-
- for ((i=0; ; i++))
- do
- for ((k=1; k <= NUM_JOBS; k++))
- do
- $XFS_IO_PROG -f -c "falloc 0 $FILE_SIZE" \
- $SCRATCH_MNT/direct_aio.$k.0 >> $seqres.full 2>&1
- done
- for ((k=1; k <= NUM_JOBS; k++))
- do
- $XFS_IO_PROG -c "truncate 0" \
- $SCRATCH_MNT/direct_aio.$k.0 >> $seqres.full 2>&1
- done
- # Following like will check that pid is still run.
- # Once fio exit we can stop fallocate/truncate loop
- pgrep -f "$FIO_PROG" > /dev/null 2>&1 || break
- done
- wait $pid
-}
-
_scratch_mkfs >> $seqres.full 2>&1
_scratch_mount
-if ! _workout; then
- _scratch_unmount 2>/dev/null
- exit
-fi
+echo ""
+echo "Run fio with random aio-dio pattern"
+echo ""
+cat $fio_config >> $seqres.full
+$FIO_PROG $fio_config --output=$fio_out &
+pid=$!
+echo "Start fallocate/truncate loop"
+
+for ((i=0; ; i++))
+do
+ for ((k=1; k <= NUM_JOBS; k++))
+ do
+ $XFS_IO_PROG -f -c "falloc 0 $FILE_SIZE" \
+ $SCRATCH_MNT/direct_aio.$k.0 >> $seqres.full 2>&1
+ done
+ for ((k=1; k <= NUM_JOBS; k++))
+ do
+ $XFS_IO_PROG -c "truncate 0" \
+ $SCRATCH_MNT/direct_aio.$k.0 >> $seqres.full 2>&1
+ done
+ # Following like will check that pid is still run.
+ # Once fio exit we can stop fallocate/truncate loop
+ pgrep -f "$FIO_PROG" > /dev/null 2>&1 || break
+done
+wait $pid
+cat $fio_out >> $seqres.full
-if ! _scratch_unmount; then
- echo "failed to umount"
- status=1
- exit
-fi
status=0
exit
@@ -15,8 +15,14 @@ echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
fio_config=$tmp.fio
+fio_out=$tmp.fio.out
status=1 # failure is the default!
-trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+ rm -f $tmp.*
+}
# get standard environment, filters and checks
. ./common/rc
@@ -26,6 +32,7 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
_supported_fs generic
_require_scratch
_require_odirect
+_require_aio
_require_block_device $SCRATCH_DEV
# xfs_io is not required for this test, but it's the best way to verify
@@ -115,29 +122,17 @@ rw=randwrite
filename=aio-dio-verifier
EOF
-_workout()
-{
- echo ""
- echo "Run fio with random aio-dio pattern"
- echo ""
- cat $fio_config >> $seqres.full
- run_check $FIO_PROG $fio_config
-}
-
_require_fio $fio_config
_scratch_mkfs_sized $FS_SIZE >> $seqres.full 2>&1
_scratch_mount
-if ! _workout; then
- _scratch_unmount 2>/dev/null
- exit
-fi
+echo ""
+echo "Run fio with random aio-dio pattern"
+echo ""
+cat $fio_config >> $seqres.full
+$FIO_PROG $fio_config --output=$fio_out
+cat $fio_out >> $seqres.full
-if ! _scratch_unmount; then
- echo "failed to umount"
- status=1
- exit
-fi
status=0
exit
During the code review for a test to exercises AIO/DIO into unwritten space, a number of changes were requested that were also applicable to generic/299 and generic/300 (from which the aforementioned test was patterned). For example, the use of run_check, which is deprecated, was dropped. In addition, we now rely on the test runner to unmount the scratch file system. Also fix a nit I found in generic/095, which resulted in debugging information in the $seqres.full to get lost when "fio ... --output=$seqres.full" is run. Signed-off-by: Theodore Ts'o <tytso@mit.edu> --- tests/generic/095 | 4 ++- tests/generic/299 | 73 ++++++++++++++++++++++------------------------- tests/generic/300 | 33 +++++++++------------ 3 files changed, 51 insertions(+), 59 deletions(-)