[2.6.23 patch] xtensa process.c must #include <linux/fs.h>

From: Adrian Bunk
Date: Wed Aug 29 2007 - 19:29:57 EST


On Wed, Aug 29, 2007 at 08:04:52PM +0200, Jan Dittmer wrote:
> Michal Piotrowski wrote:
> > Subject : 2.6.23-rc2 cross compile regressions (alpha,xtensa)
> > References : http://lkml.org/lkml/2007/8/6/43
> > Last known good : alpha: 2.6.22-git8 xtensa: 2.6.22-git6
> > Submitter : Jan Dittmer <jdi@xxxxxxx>
> > Caused-By : ?
> > Handled-By : xtensa: Christian Zankel <chris@xxxxxxxxxx>
> > Status : unknown
>
> Status: Unfixed
>...
> xtensa: http://l4x.org/k/?d=33728
> CC arch/xtensa/kernel/process.o
> arch/xtensa/kernel/process.c:50: error: `INR_OPEN' undeclared here (not in a function)
> arch/xtensa/kernel/process.c:50: error: initializer element is not constant
> arch/xtensa/kernel/process.c:50: error: (near initialization for `init_signals.rlim[7].rlim_cur')
>...

Patch below.

> Jan

cu
Adrian


<-- snip -->


Another fallout from the removal of #include <linux/fs.h> from mm.h

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx>

---
6a0031b0f3f40238fc604bba264981776a155dbf
diff --git a/arch/xtensa/kernel/process.c b/arch/xtensa/kernel/process.c
index ce758ba..dd498f1 100644
--- a/arch/xtensa/kernel/process.c
+++ b/arch/xtensa/kernel/process.c
@@ -30,6 +30,7 @@
#include <linux/init_task.h>
#include <linux/module.h>
#include <linux/mqueue.h>
+#include <linux/fs.h>

#include <asm/pgtable.h>
#include <asm/uaccess.h>

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/