From owner-freebsd-bugs Tue May 11 15:40: 9 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 102AC14FF4 for ; Tue, 11 May 1999 15:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA82954; Tue, 11 May 1999 15:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 15:40:03 -0700 (PDT) Message-Id: <199905112240.PAA82954@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Bob Willcox Subject: Re: kern/10872: Panic in sorecieve() Reply-To: Bob Willcox Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR kern/10872; it has been noted by GNATS. 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() 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