Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760497AbXK0XPk (ORCPT ); Tue, 27 Nov 2007 18:15:40 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753245AbXK0XP2 (ORCPT ); Tue, 27 Nov 2007 18:15:28 -0500 Received: from smtpoutm.mac.com ([17.148.16.75]:63010 "EHLO smtpoutm.mac.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753168AbXK0XP0 (ORCPT ); Tue, 27 Nov 2007 18:15:26 -0500 In-Reply-To: <474C9EEE.4090904@goop.org> References: <4744FD87.7010301@goop.org> <200711271840.24825.rjw@sisk.pl> <8B00F353-983F-40E7-931B-EA73CCD32F0A@mac.com> <200711280002.00755.rjw@sisk.pl> <474C9EEE.4090904@goop.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Cc: "Rafael J. Wysocki" , Matthew Garrett , David Chinner , xfs-masters@oss.sgi.com, Linux Kernel Mailing List , Len Brown Content-Transfer-Encoding: 7bit From: Kyle Moffett Subject: Re: freeze vs freezer Date: Tue, 27 Nov 2007 18:14:32 -0500 To: Jeremy Fitzhardinge X-Mailer: Apple Mail (2.752.2) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1967 Lines: 41 On Nov 27, 2007, at 17:49:18, Jeremy Fitzhardinge wrote: > Rafael J. Wysocki wrote: >> Well, this is more-or-less how we all imagine that should be done >> eventually. >> >> The main problem is how to implement it without causing too much >> breakage. Also, there are some dirty details that need to be >> taken into consideration. > > For Xen suspend/resume, I'd like to use the freezer to get all > threads into a known consistent state (where, specifically, they > don't have any outstanding pagetable updates pending). In other > words, the freezer as it currently stands is what I want, modulo > some of these issues where it gets caught up unexpectedly. If > threads end up getting frozen anywhere preempt isn't explicitly > disabled, it wouldn't work for me. The problem with "one freezer" is that "known consistent state" means something completely different to every single driver and subsystem. Xen wants it to mean "No pending page table updates and no more updates from this point forward". A network driver wants it to mean "All pending network packets DMAed out or in and the device shut down with all remaining packets queued. A SATA controller wants it to mean "All DMA quiesced and no more commands", etc. The only way to have that work is to put minimal definitions of what state you care about in the drivers themselves. For Xen this means that you need to have an appropriately-timed suspend handler which hooks into Xen code very precisely to create and preserve the "No pending page table updates" state that you care about. It will be more work in the short term but it's the only maintainable solution in the long term IMO. Cheers, Kyle Moffett - 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/