diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-26 15:22:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 20:16:47 -0700 |
commit | 3b8f14b41026fb7d7e9a4af2a4128a702d07ad26 (patch) | |
tree | f28da266afc860c6e1958ed7ba6381c79432e4cb /mm/util.c | |
parent | 510a35d4a47802f4a0028aa6bd2ca2170da5e32f (diff) |
mm/util.c must #include <linux/sched.h>
mm/util.c: In function 'arch_pick_mmap_layout':
mm/util.c:144: error: dereferencing pointer to incomplete type
mm/util.c:145: error: 'arch_get_unmapped_area' undeclared (first use in this function)
mm/util.c:145: error: (Each undeclared identifier is reported only once
mm/util.c:145: error: for each function it appears in.)
mm/util.c:146: error: 'arch_unmap_area' undeclared (first use in this function)
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/util.c')
-rw-r--r-- | mm/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/util.c b/mm/util.c index 0efd83097ecf..d8d02210e06c 100644 --- a/mm/util.c +++ b/mm/util.c @@ -3,6 +3,7 @@ #include <linux/string.h> #include <linux/module.h> #include <linux/err.h> +#include <linux/sched.h> #include <asm/uaccess.h> /** |