Date: Tue, 11 May 1999 15:40:03 -0700 (PDT) From: Bob Willcox <bob@luke.pmr.com> To: freebsd-bugs@FreeBSD.org Subject: Re: kern/10872: Panic in sorecieve() Message-ID: <199905112240.PAA82954@freefall.freebsd.org>
index | next in thread | raw e-mail
The following reply was made to PR kern/10872; it has been noted by GNATS.
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()
Date: Tue, 11 May 1999 17:33:17 -0500
--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
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199905112240.PAA82954>
