diff options
Diffstat (limited to 'arch/x86/mm/init_64.c')
-rw-r--r-- | arch/x86/mm/init_64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 99a091ee5a6a..955dbc8abf6a 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -620,7 +620,9 @@ void __init initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
620 | PAGE_SIZE); | 620 | PAGE_SIZE); |
621 | if (bootmap == -1L) | 621 | if (bootmap == -1L) |
622 | panic("Cannot find bootmem map of size %ld\n", bootmap_size); | 622 | panic("Cannot find bootmem map of size %ld\n", bootmap_size); |
623 | bootmap_size = init_bootmem(bootmap >> PAGE_SHIFT, end_pfn); | 623 | /* don't touch min_low_pfn */ |
624 | bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap >> PAGE_SHIFT, | ||
625 | 0, end_pfn); | ||
624 | e820_register_active_regions(0, start_pfn, end_pfn); | 626 | e820_register_active_regions(0, start_pfn, end_pfn); |
625 | free_bootmem_with_active_regions(0, end_pfn); | 627 | free_bootmem_with_active_regions(0, end_pfn); |
626 | early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT); | 628 | early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT); |