Date: Tue, 11 May 1999 17:33:17 -0500 From: Bob Willcox <bob@luke.pmr.com> To: Pierre Beyssac <beyssac@enst.fr> Cc: Bob Willcox <bob@pmr.com>, freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/10872: Panic in sorecieve() Message-ID: <19990511173317.A34161@luke.pmr.com> In-Reply-To: <19990511130004.A29148@luke.pmr.com>; from Bob Willcox on Tue, May 11, 1999 at 01:00:04PM -0500 References: <19990511185956.A12679@enst.fr> <19990511124117.A28606@luke.pmr.com> <19990511195311.R427@enst.fr> <19990511130004.A29148@luke.pmr.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Oops, I forgot to attach the test shell script as promised to that last note. So here it is this time. Bob -- Bob Willcox The man who follows the crowd will usually get no bob@luke.pmr.com further than the crowd. The man who walks alone is Austin, TX likely to find himself in places no one has ever been. -- Alan Ashley-Pitt --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=panic_test #!/bin/sh if [ $# -ne 4 ]; then echo "Usage: panic_test loopcnt blkcnt host path" exit 1 fi lpcnt=$1 blkcnt=$2 host=$3 path=$4 i=1 while [ $i -le $lpcnt ] do cmd="dd count=$blkcnt bs=32k if=/dev/zero|rsh $host \"dd bs=32k of=$path\"" echo "$i: $cmd" eval $cmd i=`expr $i + 1` done --LZvS9be/3tNcYl/X-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990511173317.A34161>