From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S264960AbTK3RWI (ORCPT ); Sun, 30 Nov 2003 12:22:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264963AbTK3RWH (ORCPT ); Sun, 30 Nov 2003 12:22:07 -0500 Received: from ns.virtualhost.dk ([195.184.98.160]:58280 "EHLO virtualhost.dk") by vger.kernel.org with ESMTP id S264960AbTK3RVl (ORCPT ); Sun, 30 Nov 2003 12:21:41 -0500 Date: Sun, 30 Nov 2003 18:21:34 +0100 From: Jens Axboe To: Pavel Machek Cc: "Prakash K. Cheemplavam" , kernel list , jgarzik@pobox.com Subject: Re: FYI: My current suspend bigdiff Message-ID: <20031130172134.GB10679@suse.de> References: <3FC7860C.2060505@gmx.de> <20031128173312.GH303@elf.ucw.cz> <3FC789F5.2000208@gmx.de> <20031128175503.GB18072@elf.ucw.cz> <3FC7908A.9030007@gmx.de> <20031128235623.GB18147@elf.ucw.cz> <3FC8C0DB.9050107@gmx.de> <20031129172537.GB459@elf.ucw.cz> <3FC9C560.2070902@gmx.de> <20031130171833.GB516@elf.ucw.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031130171833.GB516@elf.ucw.cz> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Nov 30 2003, Pavel Machek wrote: > Hi! > > > >Well... it could work with scsi. You can try it, but be carefull. [If > > >it goes wrong it might eat your data.] > > > > Thats why I use xfs on my main system to test... And I tried with libata > > and it won't work as it complains that the "katad" process cannot be > > stopped, so swsusp immediatly comes back. > > I do not know how much more support is needed to allow powermanagment > for libata, but this one should be easy... > > [Hmm, I hope it compiles, I certainly do not use libata for now.] > Pavel > > --- clean/drivers/scsi/libata-core.c 2003-11-28 17:06:39.000000000 +0100 > +++ linux/drivers/scsi/libata-core.c 2003-11-30 18:16:02.000000000 +0100 > @@ -34,6 +34,7 @@ > #include > #include > #include > +#include > #include > #include "scsi.h" > #include "hosts.h" > @@ -2564,6 +2565,8 @@ > > while (1) { > cond_resched(); > + if (current->flags & PF_FREEZE) > + refrigerator(PF_IOTHREAD); Curious - can't this be put some place a bit smarter, so we don't have to update every single "driver" with a kernel thread out there (like in the scheduler)? Seems pretty fragile to rely on this. Plus, when you change this in the future there'll be N drivers to update again. -- Jens Axboe