Skip to content

Commit

Permalink
Merge branch 'x86/crashdump' into x86/urgent
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingo Molnar committed Jul 28, 2008
2 parents d7ba11d + 91467bd commit 6ce37a5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions arch/x86/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -788,10 +788,6 @@ void __init setup_arch(char **cmdline_p)

initmem_init(0, max_pfn);

#ifdef CONFIG_X86_64
dma32_reserve_bootmem();
#endif

#ifdef CONFIG_ACPI_SLEEP
/*
* Reserve low memory region for sleep support.
Expand All @@ -806,6 +802,15 @@ void __init setup_arch(char **cmdline_p)
#endif
reserve_crashkernel();

#ifdef CONFIG_X86_64
/*
* dma32_reserve_bootmem() allocates bootmem which may conflict
* with the crashkernel command line, so do that after
* reserve_crashkernel()
*/
dma32_reserve_bootmem();
#endif

reserve_ibft_region();

#ifdef CONFIG_KVM_CLOCK
Expand Down

0 comments on commit 6ce37a5

Please sign in to comment.