diff options
author | Yinghai Lu <yinghai@kernel.org> | 2010-02-17 14:29:49 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-02-22 03:16:40 -0500 |
commit | 2ee78f7b1d8ada2615ecbcd9fea70580008bd6ce (patch) | |
tree | 4fa5e1df3bbf771fc57714272f7a6941aa3ed3a2 /mm/page_alloc.c | |
parent | 580e0ad21d6d6f932461d24b47041e3dd499c23f (diff) |
x86: Fix non-bootmem compilation on PowerPC
These build errors on some non-x86 platforms (PowerPC for example):
mm/page_alloc.c: In function '__alloc_memory_core_early':
mm/page_alloc.c:3468: error: implicit declaration of function 'find_early_area'
mm/page_alloc.c:3483: error: implicit declaration of function 'reserve_early_without_check'
The function is only needed on CONFIG_NO_BOOTMEM.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Johannes Weiner <hannes@saeurebad.de>
Cc: Mel Gorman <mel@csn.ul.ie>
LKML-Reference: <4B747239.4070907@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 78821a28e394..1fa93bd2bb9f 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -3450,6 +3450,7 @@ int __init add_from_early_node_map(struct range *range, int az, | |||
3450 | return nr_range; | 3450 | return nr_range; |
3451 | } | 3451 | } |
3452 | 3452 | ||
3453 | #ifdef CONFIG_NO_BOOTMEM | ||
3453 | void * __init __alloc_memory_core_early(int nid, u64 size, u64 align, | 3454 | void * __init __alloc_memory_core_early(int nid, u64 size, u64 align, |
3454 | u64 goal, u64 limit) | 3455 | u64 goal, u64 limit) |
3455 | { | 3456 | { |
@@ -3486,6 +3487,7 @@ void * __init __alloc_memory_core_early(int nid, u64 size, u64 align, | |||
3486 | 3487 | ||
3487 | return NULL; | 3488 | return NULL; |
3488 | } | 3489 | } |
3490 | #endif | ||
3489 | 3491 | ||
3490 | 3492 | ||
3491 | void __init work_with_active_regions(int nid, work_fn_t work_fn, void *data) | 3493 | void __init work_with_active_regions(int nid, work_fn_t work_fn, void *data) |