From: Dmitry Monakhov Date: Wed, 20 Feb 2013 10:42:12 +0000 (+0000) Subject: xfstest: add fallocate/truncate vs AIO/DIO stress test X-Git-Tag: v2022.05.01~3535 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0f88dc26abf55cee39ede490da08ed0d2960cdb2;p=users%2Fhch%2Fxfstests-dev.git xfstest: add fallocate/truncate vs AIO/DIO stress test Run DIO, fallocate and truncate threads on a common file in parallel. If a race exists, the old dio request may rewrite blocks after it was allocated to another file, we will catch that by verifying blocks content. this patch known to catch deadlock for ext4 http://lists.openwall.net/linux-ext4/2012/09/06/3 Signed-off-by: Dmitry Monakhov Reviewed-by: Rich Johnston Signed-off-by: Rich Johnston --- diff --git a/299 b/299 new file mode 100644 index 000000000..4305ead8c --- /dev/null +++ b/299 @@ -0,0 +1,157 @@ +#! /bin/bash +# FSQA Test No. 299 +# +# AIO/DIO stress test +# Run random AIO/DIO activity and fallocate/truncate simultaneously +# Test will operate on huge sparsed files so ENOSPC is expected. +# +#----------------------------------------------------------------------- +# (c) 2013 Dmitry Monakhov +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# +#----------------------------------------------------------------------- +# +# creator +owner=dmonakhov@openvz.org + +seq=`basename $0` +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 + +# real QA test starts here +_supported_fs generic +_supported_os Linux +_need_to_be_root +_require_scratch + +NUM_JOBS=$((4*LOAD_FACTOR)) +BLK_DEV_SIZE=`blockdev --getsz $SCRATCH_DEV` +FILE_SIZE=$((BLK_DEV_SIZE * 512)) + +cat >$tmp-$seq.fio <> $seq.full + run_check $FIO_PROG $tmp-$seq.fio & + pid=$! + echo "Start fallocate/truncate loop" + + for ((i=0; ; i++)) + do + for ((k=1; k <= NUM_JOBS; k++)) + do + fallocate -l $FILE_SIZE $SCRATCH_MNT/direct_aio.$k.0 \ + >> $seq.full 2>&1 + done + for ((k=1; k <= NUM_JOBS; k++)) + do + truncate -s 0 $SCRATCH_MNT/direct_aio.$k.0 + done + # Following like will check that pid is still run. + # Once fio exit we can stop fallocate/truncate loop + kill -0 $pid > /dev/null 2>&1 || break + done + wait $pid +} + +_scratch_mkfs >> $seq.full 2>&1 +_scratch_mount + +if ! _workout; then + umount $SCRATCH_DEV 2>/dev/null + exit +fi + +if ! _scratch_unmount; then + echo "failed to umount" + status=1 + exit +fi +_check_scratch_fs +status=$? +exit diff --git a/299.out b/299.out new file mode 100644 index 000000000..fb41f3bfc --- /dev/null +++ b/299.out @@ -0,0 +1,5 @@ +QA output created by 299 + +Run fio with random aio-dio pattern + +Start fallocate/truncate loop diff --git a/group b/group index 7bf814446..f7509994e 100644 --- a/group +++ b/group @@ -422,3 +422,4 @@ stress 296 dump auto quick 297 auto freeze 298 auto trim +299 auto aio enospc rw stress