Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754659AbWKHTyz (ORCPT ); Wed, 8 Nov 2006 14:54:55 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754660AbWKHTyz (ORCPT ); Wed, 8 Nov 2006 14:54:55 -0500 Received: from hera.kernel.org ([140.211.167.34]:3002 "EHLO hera.kernel.org") by vger.kernel.org with ESMTP id S1754659AbWKHTyy (ORCPT ); Wed, 8 Nov 2006 14:54:54 -0500 To: linux-kernel@vger.kernel.org From: Stephen Hemminger Subject: General network driver suspend/resume (was e1000 carrier related) Date: Wed, 8 Nov 2006 11:54:14 -0800 Organization: OSDL Message-ID: <20061108115414.7e089a58@freekitty> References: <20061106013153.GN15897@curie-int.orbis-terrarum.net> <20061107071449.GB21655@elf.ucw.cz> <4550AB7A.10508@intel.com> <20061108120407.GA9506@elf.ucw.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: build.pdx.osdl.net 1163015654 32463 10.8.0.54 (8 Nov 2006 19:54:14 GMT) X-Complaints-To: abuse@osdl.org NNTP-Posting-Date: Wed, 8 Nov 2006 19:54:14 +0000 (UTC) X-Newsreader: Sylpheed-Claws 2.5.0-rc3 (GTK+ 2.10.6; i486-pc-linux-gnu) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2036 Lines: 65 On Wed, 8 Nov 2006 13:04:07 +0100 Pavel Machek wrote: > Hi! > > > >>This behavior differs from every other network card, and is also present > > >>in the > > >>7.3* version of the driver from sourceforge. > > >> > > >>I think the e1000 should try to raise the link during the probe, so that > > >>it > > >>works properly, without having to set ifconfig ethX up first. > > > > > >I think you should cc e1000 maintainers, and perhaps provide a patch.... > > > > I've read it and not come up with an answer due to some other issues at > > hand. E1000 hardware works differently and this has been asked before, but > > the cards itself are in low power state when down. Changing this to bring > > up the link would make the card start to consume lots more power, which > > would automatically suck enormously for anyone using a laptop. > > Well, maybe E1000 should behave as the other cards behave, and > different solution needs to be found for power saving? ifconfig eth0 > suspend? > > Pavel > > The standard which all network drivers should use is: module insertion: start in initial powerdown state open: power up, bring up link stop: bring down link return to powerdown state unless WOL is set. if doing WOL go to lowest power sensing state suspend: same as stop resume: same as open module removal: stop already called so device should be in power down state. Since suspend is basically same as stop, and resume is open I am going to investigate doing suspend/resume in the network device layer (unless subclassed by driver), so we can rip out the suspend/resume hook from many network drivers. There will still be boards like sky2 that need own suspend/resume to deal with dual port etc. -- Stephen Hemminger - 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/