Commit 3b8f14b41026fb7d7e9a4af2a4128a702d07ad26

Authored by Adrian Bunk
Committed by Linus Torvalds
1 parent 510a35d4a4

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -3,6 +3,7 @@
3 3 #include <linux/string.h>
4 4 #include <linux/module.h>
5 5 #include <linux/err.h>
  6 +#include <linux/sched.h>
6 7 #include <asm/uaccess.h>
7 8  
8 9 /**