[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0612100623560.8221@lancer.cnet.absolutedigital.net>
Date: Sun, 10 Dec 2006 06:37:38 -0500 (EST)
From: Cal Peake <cp@...olutedigital.net>
To: Kernel Mailing List <linux-kernel@...r.kernel.org>
cc: Linus Torvalds <torvalds@...l.org>, Andrew Morton <akpm@...l.org>
Subject: [PATCH] include/linux/freezer.h needs PF_FREEZE and PF_FROZEN
declarations
JFS (modular, if it matters) fails to build with this error:
In file included from fs/jfs/jfs_txnmgr.c:49:
include/linux/freezer.h: In function `frozen':
include/linux/freezer.h:9: error: dereferencing pointer to incomplete type
include/linux/freezer.h:9: error: `PF_FROZEN' undeclared (first use in this function)
include/linux/freezer.h:9: error: (Each undeclared identifier is reported only once
include/linux/freezer.h:9: error: for each function it appears in.)
...
From: Cal Peake <cp@...olutedigital.net>
Include include/linux/sched.h in include/linux/freezer.h for PF_FREEZE and
PF_FROZEN declarations.
Signed-off-by: Cal Peake <cp@...olutedigital.net>
--- ./include/linux/freezer.h~orig 2006-12-07 22:33:46.000000000 -0500
+++ ./include/linux/freezer.h 2006-12-10 06:15:11.000000000 -0500
@@ -1,6 +1,9 @@
/* Freezer declarations */
#ifdef CONFIG_PM
+
+#include <linux/sched.h>
+
/*
* Check if a process has been frozen
*/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists