From owner-freebsd-bugs Tue May 11 15:33:25 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from luke.pmr.com (luke.pmr.com [207.170.114.132]) by hub.freebsd.org (Postfix) with ESMTP id 4477B14CE9; Tue, 11 May 1999 15:33:20 -0700 (PDT) (envelope-from bob@luke.pmr.com) Received: (from bob@localhost) by luke.pmr.com (8.9.3/8.9.2) id RAA34182; Tue, 11 May 1999 17:33:17 -0500 (CDT) (envelope-from bob) Date: Tue, 11 May 1999 17:33:17 -0500 From: Bob Willcox To: Pierre Beyssac Cc: Bob Willcox , freebsd-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/10872: Panic in sorecieve() Message-ID: <19990511173317.A34161@luke.pmr.com> Reply-To: Bob Willcox References: <19990511185956.A12679@enst.fr> <19990511124117.A28606@luke.pmr.com> <19990511195311.R427@enst.fr> <19990511130004.A29148@luke.pmr.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="LZvS9be/3tNcYl/X" X-Mailer: Mutt 0.95.1i In-Reply-To: <19990511130004.A29148@luke.pmr.com>; from Bob Willcox on Tue, May 11, 1999 at 01:00:04PM -0500 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --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