From owner-freebsd-current Tue Oct 1 7:31:18 2002 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 9C44737B401 for ; Tue, 1 Oct 2002 07:31:16 -0700 (PDT) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3737743E77 for ; Tue, 1 Oct 2002 07:31:16 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 24821 invoked from network); 1 Oct 2002 14:31:16 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 1 Oct 2002 14:31:16 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.5/8.12.5) with ESMTP id g91EVEBv010288; Tue, 1 Oct 2002 10:31:14 -0400 (EDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200210011206.g91C6xWH000597@grimreaper.grondar.org> Date: Tue, 01 Oct 2002 10:31:17 -0400 (EDT) From: John Baldwin To: Mark Murray Subject: RE: PCI brokenness Cc: current@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 01-Oct-2002 Mark Murray wrote: > Hi > > I'm running a kernel with your very latest nexus.c 1.49. > > The problem of the disappearing HD has not been fixed by this. > > Enclosed are verbose mesg's, one from a three-hour-ago > (1st Oct 2002, 11:00 am, BST) kernel (broken), and another > from a working Sept 22nd kernel. This is quite weird. You have a PCI bus and ACPI still finds it fine, it just doesn't probe/attach any child devices. Hmm, and your ATA controller isn't on the PCI bus. Ok, weird. Do you have hints for your ata device? It looks like you had hints for it in your good kernel boot since it was found on isa0. Hmm, can you try this patch: Index: ata-isa.c =================================================================== RCS file: /usr/cvs/src/sys/dev/ata/ata-isa.c,v retrieving revision 1.9 diff -u -r1.9 ata-isa.c --- ata-isa.c 20 Sep 2002 18:08:57 -0000 1.9 +++ ata-isa.c 1 Oct 2002 14:26:39 -0000 @@ -98,6 +98,7 @@ }; DRIVER_MODULE(ata, isa, ata_isa_driver, ata_devclass, 0, 0); +DRIVER_MODULE(ata, acpi, ata_isa_driver, ata_devclass, 0, 0); /* * the following is a bandaid to get ISA only setups to link, -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message