]> Git Repo - linux.git/commitdiff
x86: Exclude E820_RESERVED regions and memory holes above 4 GB from direct mapping.
authorJacob Shin <[email protected]>
Thu, 20 Oct 2011 21:15:26 +0000 (16:15 -0500)
committerH. Peter Anvin <[email protected]>
Wed, 17 Oct 2012 17:59:39 +0000 (10:59 -0700)
On systems with very large memory (1 TB in our case), BIOS may report a
reserved region or a hole in the E820 map, even above the 4 GB range. Exclude
these from the direct mapping.

[ hpa: this should be done not just for > 4 GB but for everything above the legacy
  region (1 MB), at the very least.  That, however, turns out to require significant
  restructuring.  That work is well underway, but is not suitable for rc/stable. ]

Cc: [email protected] # > 2.6.32
Signed-off-by: Jacob Shin <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: H. Peter Anvin <[email protected]>
arch/x86/kernel/setup.c

index f4b9b80e1b95e2a9d0341fd62ed4412949b52243..198e774498ec0e48648dba2f6d96c0ddb8136493 100644 (file)
@@ -919,8 +919,21 @@ void __init setup_arch(char **cmdline_p)
 
 #ifdef CONFIG_X86_64
        if (max_pfn > max_low_pfn) {
-               max_pfn_mapped = init_memory_mapping(1UL<<32,
-                                                    max_pfn<<PAGE_SHIFT);
+               int i;
+               for (i = 0; i < e820.nr_map; i++) {
+                       struct e820entry *ei = &e820.map[i];
+
+                       if (ei->addr + ei->size <= 1UL << 32)
+                               continue;
+
+                       if (ei->type == E820_RESERVED)
+                               continue;
+
+                       max_pfn_mapped = init_memory_mapping(
+                               ei->addr < 1UL << 32 ? 1UL << 32 : ei->addr,
+                               ei->addr + ei->size);
+               }
+
                /* can we preseve max_low_pfn ?*/
                max_low_pfn = max_pfn;
        }
This page took 0.060117 seconds and 4 git commands to generate.