From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Hansen Subject: Re: [ANNOUNCE] e1000 to e1000e migration of PCI Express devices Date: Fri, 04 Apr 2008 14:31:09 -0700 Message-ID: <1207344669.26869.33.camel@nimitz.home.sr71.net> References: <47F69965.7030303@intel.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: Linux Kernel Mailing List , NetDev , e1000-list , linux-pci maillist , Jeff Garzik , Andrew Morton , "David S. Miller" , Linus Torvalds , Jesse Brandeburg , "Ronciak, John" , "Allan, Bruce W" , Greg KH , Arjan van de Ven To: "Kok, Auke" Return-path: Received: from e4.ny.us.ibm.com ([32.97.182.144]:35029 "EHLO e4.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751003AbYDDVbP (ORCPT ); Fri, 4 Apr 2008 17:31:15 -0400 In-Reply-To: <47F69965.7030303@intel.com> Sender: netdev-owner@vger.kernel.org List-ID: On Fri, 2008-04-04 at 14:11 -0700, Kok, Auke wrote: > >From kernel 2.6.26 onward all *PCI Express* device IDs previously > supported by e1000 will be moving to the e1000e driver. This includes > ich8 and ich9 onboard LAN, server 5000 platform onboard LAN (es2) and > 82571/2/3 chipset based adapters and variants. > > If you have not already enabled CONFIG_E1000E make sure that you do so. > You can already do this with 2.6.25. From 2.6.26 on this change will be > required if you have such a device. I've been bitten by one or two of these in the past. Can we do something like this for a couple of releases? Shouldn't this default the E1000E config option to the same thing that people have the E1000 set as? It should catch the dumb people like me who's enter key gets held down during a 'make oldconfig'. :) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 3a0b20a..aa0fe14 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -2005,6 +2005,7 @@ config E1000_DISABLE_PACKET_SPLIT config E1000E tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support" depends on PCI + default E1000 ---help--- This driver supports the PCI-Express Intel(R) PRO/1000 gigabit ethernet family of adapters. For PCI or PCI-X e1000 adapters, -- Dave