diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-06-14 21:32:52 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 04:37:25 -0400 |
commit | b5bc6c0e55000dab86b73f838f5ad02908b23755 (patch) | |
tree | 4895117f5e69ed8648f102dccc895c80c14fbae5 /arch/x86/kernel/e820.c | |
parent | d0be6bdea103b8d04c8a3495538b7c0011ae4129 (diff) |
x86, mm: use add_highpages_with_active_regions() for high pages init v2
use early_node_map to init high pages, so we can remove page_is_ram() and
page_is_reserved_early() in the big loop with add_one_highpage
also remove page_is_reserved_early(), it is not needed anymore.
v2: fix the build of other platforms
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/e820.c')
-rw-r--r-- | arch/x86/kernel/e820.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index 5051ce744b4e..ed46b7a6bc13 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c | |||
@@ -612,17 +612,6 @@ void __init free_early(u64 start, u64 end) | |||
612 | early_res[j - 1].end = 0; | 612 | early_res[j - 1].end = 0; |
613 | } | 613 | } |
614 | 614 | ||
615 | int __init page_is_reserved_early(unsigned long pagenr) | ||
616 | { | ||
617 | u64 start = (u64)pagenr << PAGE_SHIFT; | ||
618 | int i; | ||
619 | struct early_res *r; | ||
620 | |||
621 | i = find_overlapped_early(start, start + PAGE_SIZE); | ||
622 | r = &early_res[i]; | ||
623 | return (i < MAX_EARLY_RES && r->end); | ||
624 | } | ||
625 | |||
626 | void __init early_res_to_bootmem(u64 start, u64 end) | 615 | void __init early_res_to_bootmem(u64 start, u64 end) |
627 | { | 616 | { |
628 | int i; | 617 | int i; |