[PATCH] xfstests generic/320: heavy rm workload test
Eryu Guan
eguan at redhat.com
Mon Oct 21 22:56:20 CDT 2013
On Tue, Oct 22, 2013 at 09:29:55AM +1100, Dave Chinner wrote:
> On Mon, Oct 21, 2013 at 09:01:24PM +0800, Eryu Guan wrote:
> > This test is based on generic/273, a regression test for commit
> >
> > 9a3a5da xfs: check for stale inode before acquiring iflock on push
> >
> > On unpatched kernel, rm processes would hang.
> >
> > Signed-off-by: Eryu Guan <eguan at redhat.com>
> > ---
> > tests/generic/320 | 139 ++++++++++++++++++++++++++++++++++++++++++++++++++
> > tests/generic/320.out | 2 +
> > tests/generic/group | 2 +-
> > 3 files changed, 142 insertions(+), 1 deletion(-)
> > create mode 100755 tests/generic/320
> > create mode 100644 tests/generic/320.out
> >
> > diff --git a/tests/generic/320 b/tests/generic/320
> > new file mode 100755
> > index 0000000..afe35a3
> > --- /dev/null
> > +++ b/tests/generic/320
> > @@ -0,0 +1,139 @@
> > +#! /bin/bash
> > +# FS QA Test No. generic/320
> > +#
> > +# heavy rm workload
> > +#
> > +# Regression test for commit:
> > +# 9a3a5da xfs: check for stale inode before acquiring iflock on push
> > +#
> > +# Based on generic/273
> > +#
> > +#-----------------------------------------------------------------------
> > +# Copyright (c) 2011-2012 Fujitsu, Inc. All Rights Reserved.
> > +# Copyright (c) 2013 Red Hat, Inc. All Rights Reserved.
> > +#
> > +# 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
> > +#
> > +#-----------------------------------------------------------------------
> > +#
> > +
> > +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 -rf $tmp.*
> > +}
> > +
> > +. ./common/rc
> > +. ./common/filter
> > +
> > +threads=50
> > +count=2
> > +
> > +_threads_set()
> > +{
> > + _cpu_num=`grep -c processor /proc/cpuinfo`
> > + threads=$(($_cpu_num * 50))
> > + if [ $threads -gt 200 ]
> > + then
> > + threads=200
> > + fi
> > +}
> > +
> > +_file_create()
> > +{
> > + _i=0
> > +
> > + if ! mkdir $SCRATCH_MNT/origin
> > + then
> > + echo "mkdir origin err"
> > + status=1
> > + exit
> > + fi
>
> mkdir on a scratch device you just created shouldn't ever fail. We
> don't ibother adding noise to tests for such basic functionality
> unless we are specifically testing basic functionality.
I copy from most of code from generic/273 and did minor modifications
& cleanups, I should have done major cleanups :)
Thanks for the detailed review, I'll address them all in next version.
Thanks!
Eryu Guan
More information about the xfs
mailing list