From owner-freebsd-current@FreeBSD.ORG Tue Dec 16 15:49:39 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F16B816A4CF for ; Tue, 16 Dec 2003 15:49:38 -0800 (PST) Received: from sm1.r404.com (sm1.r404.com [69.56.206.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1AEF43D49 for ; Tue, 16 Dec 2003 15:49:37 -0800 (PST) (envelope-from radek@raadradd.com) Received: from ys63.neoplus.adsl.tpnet.pl ([80.54.138.63] helo=raadradd) by sm1.r404.com with asmtp (Exim 4.24) id 1AWOwT-0002Pa-HO; Tue, 16 Dec 2003 18:49:29 -0500 Date: Wed, 17 Dec 2003 00:50:04 +0100 From: Radek Kozlowski X-Priority: 3 (Normal) Message-ID: <3994077756.20031217005004@raadradd.com> To: Kay Lehmann In-Reply-To: <3FDF8274.1000700@web.de> References: <3FD742DD.70803@web.de> <20031210104822.J34418@carver.gumbysoft.com> <3FDF3F89.9000302@web.de> <20031216181057.GA27269@pit.databus.com> <3FDF8274.1000700@web.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sm1.r404.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - raadradd.com cc: Barney Wolff cc: freebsd-current@freebsd.org Subject: Re: once again 5.2 RC and watchdog timeout X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Dec 2003 23:49:39 -0000 On Tuesday, December 16, 2003, 11:08:52 PM, Kay Lehmann wrote: > I didn't tried it before either, but I also had no problems before with > my NICs and irq-stuff. There were some postings before, which said that > watchdog has been gone for some people when disabling acpi, so I thought > I give it a try (since I do not know what the problem could be). So I'll > take a look at your config, but my first look doesn't show anything > remarkable. I had a problem with 'watchdog timeout' on my notebook after disabling acpi (and I had to disable it because when enabled my touchpad wouldn't work) everytime dhclient started. I searched on google and found out, that not setting media type of your interface could cause a problem. I simply put the appropriate line in dhclient.conf setting my card's media to 100baseTX and it worked out of hand. I see in your ifconfig that you have 'autoselect' in rl0. Try setting it to 10baseT/UTP or 100baseTX before enabling the interface. I am not sure whether it's possible in rc.conf, but you could write a little script for instance and put it in /usr/local/etc/rc.d. The script could be something like this: #!/bin/sh ifconfig rl0 media 100baseTX mediaopt full-duplex ifconfig inet ... I hope this helps. Cheers, Radek