x86: fix boot failure with 64GB+ system with numa 32-bit
authorYinghai Lu <yhlu.kernel@gmail.com>
Sat, 7 Jun 2008 01:54:26 +0000 (18:54 -0700)
committerIngo Molnar <mingo@elte.hu>
Tue, 10 Jun 2008 09:31:59 +0000 (11:31 +0200)
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/srat_32.c

index 32d8b1142938e5999516c7599096468ee7c2136d..e9d91720a40f1600ce6a9b5aa2457a2edef64837 100644 (file)
@@ -251,7 +251,7 @@ static int __init acpi20_parse_srat(struct acpi_table_srat *sratp)
  
        for_each_online_node(nid) {
                unsigned long start = node_start_pfn[nid];
-               unsigned long end = node_end_pfn[nid];
+               unsigned long end = min(node_end_pfn[nid], max_pfn);
 
                memory_present(nid, start, end);
                node_remap_size[nid] = node_memmap_size_bytes(nid, start, end);
This page took 0.024929 seconds and 5 git commands to generate.