aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup_64.c
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel@gmail.com>2008-05-20 23:10:58 -0400
committerThomas Gleixner <tglx@linutronix.de>2008-05-25 05:35:53 -0400
commitbf62f3981c7076714e3b9f5fa6989a806cad02bf (patch)
tree8c47942af4b670d6381e853ff22f085b336ebc68 /arch/x86/kernel/setup_64.c
parentaafbdf71f1d3aeffd679b1a86e1b28f71515856c (diff)
x86: move e820_mark_nosave_regions to e820.c
and make e820_mark_nosave_regions to take limit_pfn to use max_low_pfn for 32bit and end_pfn for 64bit Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/setup_64.c')
-rw-r--r--arch/x86/kernel/setup_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c
index 6dff1286ad8a..975a5da46e49 100644
--- a/arch/x86/kernel/setup_64.c
+++ b/arch/x86/kernel/setup_64.c
@@ -516,7 +516,7 @@ void __init setup_arch(char **cmdline_p)
516 * We trust e820 completely. No explicit ROM probing in memory. 516 * We trust e820 completely. No explicit ROM probing in memory.
517 */ 517 */
518 e820_reserve_resources(); 518 e820_reserve_resources();
519 e820_mark_nosave_regions(); 519 e820_mark_nosave_regions(end_pfn);
520 520
521 /* request I/O space for devices used on all i[345]86 PCs */ 521 /* request I/O space for devices used on all i[345]86 PCs */
522 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++) 522 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)