From owner-freebsd-stable@FreeBSD.ORG Fri Sep 29 21:22:02 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8193916A4DA; Fri, 29 Sep 2006 21:22:02 +0000 (UTC) (envelope-from craig@feniz.gank.org) Received: from ion.gank.org (ion.gank.org [69.55.238.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E5143D64; Fri, 29 Sep 2006 21:21:58 +0000 (GMT) (envelope-from craig@feniz.gank.org) Received: by ion.gank.org (Postfix, from userid 1001) id E2E6610F01; Fri, 29 Sep 2006 16:21:57 -0500 (CDT) Date: Fri, 29 Sep 2006 16:21:55 -0500 From: Craig Boston To: David G Lawrence Message-ID: <20060929212155.GB56501@nowhere> Mail-Followup-To: Craig Boston , David G Lawrence , Scott Long , freebsd-stable@freebsd.org, Oliver Brandmueller , John Baldwin References: <451A1375.5080202@gneto.com> <20060927071538.GF22229@e-Gitt.NET> <451A4189.5020906@samsco.org> <20060927152824.GJ22229@e-Gitt.NET> <20060927155553.GB14563@icarus.home.lan> <20060927155904.GM22229@e-Gitt.NET> <451AA7B1.5080202@samsco.org> <20060929072741.GH14975@tnn.dglawrence.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060929072741.GH14975@tnn.dglawrence.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-stable@freebsd.org, Oliver Brandmueller , John Baldwin Subject: Re: 6.2 SHOWSTOPPER - em completely unusable on 6.2 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:22:02 -0000 Doesn't seem to have any effect for me (other than high sys% times). qemu is really good at provoking my em0 to timeout. On Fri, Sep 29, 2006 at 12:27:41AM -0700, David G Lawrence wrote: > Attached is a simple user program that will immediately cause pretty much > all of the network drivers (at least the ones I own) to stop working and > get watchdog timeouts. > > WARNING: This program will kill the network on your 6.x server. Do not run > this on a production machine unless you are on the console and can ctrl-C > it! > > -DG > > David G. Lawrence > President > Download Technologies, Inc. - http://www.downloadtech.com - (866) 399 8500 > The FreeBSD Project - http://www.freebsd.org > Pave the road of life with opportunities. > #include > > main() > { > struct pollfd pfd; > > pfd.fd = 1; > pfd.events = POLLOUT; > pfd.revents = 0; > > while (1) { > if (poll(&pfd, 1 /* stdout */, -1) < 0) > break; > } > } > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org"