From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757428AbYDHT5V (ORCPT ); Tue, 8 Apr 2008 15:57:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752255AbYDHT5I (ORCPT ); Tue, 8 Apr 2008 15:57:08 -0400 Received: from srv5.dvmed.net ([207.36.208.214]:36874 "EHLO mail.dvmed.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751853AbYDHT5H (ORCPT ); Tue, 8 Apr 2008 15:57:07 -0400 Message-ID: <47FBCE00.2020309@garzik.org> Date: Tue, 08 Apr 2008 15:56:48 -0400 From: Jeff Garzik User-Agent: Thunderbird 2.0.0.12 (X11/20080226) MIME-Version: 1.0 To: Ingo Molnar CC: Matthew Wilcox , "Kok, Auke" , Linux Kernel Mailing List , NetDev , e1000-list , linux-pci maillist , Andrew Morton , "David S. Miller" , Linus Torvalds , Jesse Brandeburg , "Ronciak, John" , "Allan, Bruce W" , Greg KH , Arjan van de Ven , "Rafael J. Wysocki" Subject: Re: [regression] e1000e broke e1000 References: <47F69965.7030303@intel.com> <20080408083606.GA20863@elte.hu> <47FB9ABB.9080403@intel.com> <20080408183921.GA20803@elte.hu> <20080408193245.GG11962@parisc-linux.org> <20080408195123.GA28148@elte.hu> In-Reply-To: <20080408195123.GA28148@elte.hu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -4.4 (----) X-Spam-Report: SpamAssassin version 3.2.4 on srv5.dvmed.net summary: Content analysis details: (-4.4 points, 5.0 required) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Ingo Molnar wrote: > * Matthew Wilcox wrote: > >> On Tue, Apr 08, 2008 at 08:39:21PM +0200, Ingo Molnar wrote: >>> so the pure presence of the e1000e module breaks the e1000 driver. That >>> is a regression and a bug that should be fixed. >> I think you've found the wrong problem ... it looks deliberate to me >> that enabling e1000e disables e1000 from claiming the PCI IDs (see the >> PCIE() macro right before the e1000_pci_tbl in >> drivers/net/e1000/e1000_main.c). >> >> The question is why e1000e isn't claiming the device ... > > because i have e1000 built-in and dont load the e1000e module at all. > That worked before and doesnt work now. > > the solution is rather straightforward: if E1000 is built-in then E1000E > should be built-in as well or disabled (i.e. it should not be possible > to build it as a module in that case) - because the PCI ID stealing > trick now connects the two drivers unconditionally. [ If e1000 is a > module then e1000e can be a module (or disabled) - this would be the > most common configuration. ] Then disable E1000E in your kernel config, and the PCIE() macro will do the right thing... Have you reviewed the discussion that led to PCIE()? Jeff