From mboxrd@z Thu Jan 1 00:00:00 1970 From: Linus Torvalds Subject: Re: 2.6.29-rc3: tg3 dead after resume Date: Sat, 31 Jan 2009 16:51:19 -0800 (PST) Message-ID: References: <200901312346.35265.rjw@sisk.pl> <200902010111.08433.rjw@sisk.pl> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Parag Warudkar , Matt Carlson , "netdev@vger.kernel.org" , Linux Kernel Mailing List , "David S. Miller" , Andrew Morton To: "Rafael J. Wysocki" Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Sat, 31 Jan 2009, Linus Torvalds wrote: > > For a USB host controller, for example, it really could make sense to do > that - just leave all the core host controller stuff running, and the only > thing the "suspend()" callback does is to send the commands to the actual > devices, it doesn't necessarily touch the host controller itself at all. Same is quite likely true of things like video graphics adapters. Again, for all the same reasons. Think about all those fbcon drivers. They will use DMA for things. And again, there are very compelling debugging reasons to not suspend them for real until suspend_late (if even then). Linus