From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Stern Subject: Re: question on freeze and aio Date: Fri, 9 Feb 2007 17:03:21 -0500 (EST) Message-ID: References: <1171056576.1484.41.camel@nigel.suspend2.net> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <1171056576.1484.41.camel@nigel.suspend2.net> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-pm-bounces@lists.osdl.org Errors-To: linux-pm-bounces@lists.osdl.org To: Nigel Cunningham Cc: linux-pm@lists.osdl.org List-Id: linux-pm@vger.kernel.org On Sat, 10 Feb 2007, Nigel Cunningham wrote: > Hi. > = > On Fri, 2007-02-09 at 17:04 +0100, Oliver Neukum wrote: > > Hi, > > = > > can there be running aio requests if all tasks are frozen? > = > Since tasks are frozen, no new aio requests would be submitted. We do a > sync to ssek to complete existing requests; I haven't looked to see > whether that would need extending to flush aio as well, but don't think > that would be the case. Given everyone else's silence, so far, you might > be better to ask the author(s) of the aio code. I believe Nigel is basically correct. However sync will only flush aio = for block devices. Other types of aio will remain active. aio callbacks are interrupt-driven and execute in a workqueue (see fs/aio.c), and as far as I can tell that workqueue doesn't freeze. = Unless some general facility freezes all workqueues... Alan Stern