aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm
diff options
context:
space:
mode:
authorShaohua Li <shaohua.li@intel.com>2009-05-12 04:40:00 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-12 05:26:35 -0400
commited077b58f6146684069975122b1728a9d248a501 (patch)
treec367da4e2c2b5a30c31d4fc3a9531f56fcd53828 /arch/x86/mm
parentbf78ad69cd351798b9447a269c6bd41ce1f111f4 (diff)
x86: make sparse mem work in non-NUMA mode
With sparse memory, holes should not be marked present for memmap. This patch makes sure sparsemem really works on SMP mode (!NUMA). [ Impact: use less memory to map fragmented RAM, avoid boot-OOM/crash ] Signed-off-by: Shaohua Li <shaohua.li@intel.com> Signed-off-by: Sheng Yang <sheng.yang@intel.com> LKML-Reference: <1242117600.22431.0.camel@sli10-desk.sh.intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r--arch/x86/mm/init_32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c
index fef1d90d4f1..949708d7a48 100644
--- a/arch/x86/mm/init_32.c
+++ b/arch/x86/mm/init_32.c
@@ -706,15 +706,15 @@ void __init initmem_init(unsigned long start_pfn,
706 highstart_pfn = highend_pfn = max_pfn; 706 highstart_pfn = highend_pfn = max_pfn;
707 if (max_pfn > max_low_pfn) 707 if (max_pfn > max_low_pfn)
708 highstart_pfn = max_low_pfn; 708 highstart_pfn = max_low_pfn;
709 memory_present(0, 0, highend_pfn);
710 e820_register_active_regions(0, 0, highend_pfn); 709 e820_register_active_regions(0, 0, highend_pfn);
710 sparse_memory_present_with_active_regions(0);
711 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n", 711 printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
712 pages_to_mb(highend_pfn - highstart_pfn)); 712 pages_to_mb(highend_pfn - highstart_pfn));
713 num_physpages = highend_pfn; 713 num_physpages = highend_pfn;
714 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1; 714 high_memory = (void *) __va(highstart_pfn * PAGE_SIZE - 1) + 1;
715#else 715#else
716 memory_present(0, 0, max_low_pfn);
717 e820_register_active_regions(0, 0, max_low_pfn); 716 e820_register_active_regions(0, 0, max_low_pfn);
717 sparse_memory_present_with_active_regions(0);
718 num_physpages = max_low_pfn; 718 num_physpages = max_low_pfn;
719 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1; 719 high_memory = (void *) __va(max_low_pfn * PAGE_SIZE - 1) + 1;
720#endif 720#endif