Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 3 Jun 2002 00:29:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 3 Jun 2002 00:29:16 -0400 Received: from samba.sourceforge.net ([198.186.203.85]:42979 "HELO lists.samba.org") by vger.kernel.org with SMTP id ; Mon, 3 Jun 2002 00:29:15 -0400 Date: Mon, 3 Jun 2002 14:27:27 +1000 From: Anton Blanchard To: linux-kernel@vger.kernel.org Subject: Re: [2.5.19] Oops during PCI scan on Alpha Message-ID: <20020603042727.GE2355@krispykreme> In-Reply-To: <20020602200646.GB20788@lug-owl.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org > Trace; fffffc00003c9f04 > Trace; fffffc00003c4e18 > Trace; fffffc00003c4f0c > Trace; fffffc00003c5060 > Trace; fffffc00003c53a0 > Trace; fffffc00003100f8 > Trace; fffffc0000310748 > Trace; fffffc0000324448 > Trace; fffffc00003100a8 > Trace; fffffc00003100e0 > Trace; fffffc0000310730 On ppc64 I found that pcibios_init was being called before pci_driver_init, maybe its happening on alpha too. I am using the following hack for the moment, I'll leave it to Patrick to fix it properly. Anton ===== drivers/pci/pci-driver.c 1.10 vs edited ===== --- 1.10/drivers/pci/pci-driver.c Fri May 31 06:10:44 2002 +++ edited/drivers/pci/pci-driver.c Sat Jun 1 09:46:37 2002 @@ -192,7 +192,7 @@ return bus_register(&pci_bus_type); } -subsys_initcall(pci_driver_init); +arch_initcall(pci_driver_init); EXPORT_SYMBOL(pci_match_device); EXPORT_SYMBOL(pci_register_driver); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/