From akpm@linux-foundation.org Thu May 31 03:51:05 2007 Return-Path: Received: from murder ([unix socket]) by ogre.sisk.pl (Cyrus v2.2.12) with LMTPA; Thu, 31 May 2007 03:42:04 +0200 X-Sieve: CMU Sieve 2.2 Received: from localhost (localhost.localdomain [127.0.0.1]) by ogre.sisk.pl (Postfix) with ESMTP id 2155A4F939 for ; Thu, 31 May 2007 03:42:04 +0200 (CEST) Received: from ogre.sisk.pl ([127.0.0.1]) by localhost (ogre.sisk.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27320-09 for ; Thu, 31 May 2007 03:42:03 +0200 (CEST) Received: from smtp1.linux-foundation.org (smtp1.linux-foundation.org [207.189.120.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ogre.sisk.pl (Postfix) with ESMTP id A94EA4F92F for ; Thu, 31 May 2007 03:42:02 +0200 (CEST) Received: from shell0.pdx.osdl.net (fw.osdl.org [65.172.181.6]) by smtp1.linux-foundation.org (8.13.5.20060308/8.13.5/Debian-3ubuntu1.1) with ESMTP id l4V1sVpo015121 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 May 2007 18:54:32 -0700 Received: from localhost.localdomain (shell0.pdx.osdl.net [10.9.0.31]) by shell0.pdx.osdl.net (8.13.1/8.11.6) with ESMTP id l4V1sUbd010018; Wed, 30 May 2007 18:54:30 -0700 Message-Id: <200705310154.l4V1sUbd010018@shell0.pdx.osdl.net> Subject: + freezer-make-kernel-threads-nonfreezable-by-default-fix-fix.patch added to -mm tree To: mm-commits@vger.kernel.org Cc: akpm@linux-foundation.org, ego@in.ibm.com, nigel@nigel.suspend2.net, oleg@tv-sign.ru, pavel@ucw.cz, rjw@sisk.pl From: akpm@linux-foundation.org Date: Wed, 30 May 2007 18:51:05 -0700 X-MIMEDefang-Filter: osdl$Revision: 1.179 $ X-Scanned-By: MIMEDefang 2.53 on 207.189.120.13 X-Virus-Scanned: amavisd-new at ogre.sisk.pl using MkS_Vir for Linux X-Length: 11108 X-UID: 356956 Status: R X-Status: NGC X-KMail-EncryptionState: X-KMail-SignatureState: X-KMail-MDN-Sent: The patch titled freezer-make-kernel-threads-nonfreezable-by-default-fix-fix has been added to the -mm tree. Its filename is freezer-make-kernel-threads-nonfreezable-by-default-fix-fix.patch include/linux/freezer.h | 5 +++++ 1 file changed, 5 insertions(+) Index: linux-2.6.22/include/linux/freezer.h =================================================================== --- linux-2.6.22.orig/include/linux/freezer.h +++ linux-2.6.22/include/linux/freezer.h @@ -1,5 +1,8 @@ /* Freezer declarations */ +#ifndef FREEZER_H_INCLUDED +#define FREEZER_H_INCLUDED + #include #ifdef CONFIG_PM @@ -141,3 +144,5 @@ static inline void freezer_count(void) { static inline int freezer_should_skip(struct task_struct *p) { return 0; } static inline void set_freezable(void) {} #endif + +#endif /* FREEZER_H_INCLUDED */