Skip to content

Commit

Permalink
powerpc: Move 64-bit memory reserves to setup_arch()
Browse files Browse the repository at this point in the history
There is really no need to do them that early, early_setup() runs
before MMU is on, we should do the strict minimum there to get the
MMU going.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Benjamin Herrenschmidt authored and Michael Ellerman committed Jul 21, 2016
1 parent c4bd6cb commit de4cf3d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions arch/powerpc/kernel/setup_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,16 +295,6 @@ void __init early_setup(unsigned long dt_ptr)
*/
cpu_ready_for_interrupts();

/* Reserve large chunks of memory for use by CMA for KVM */
kvm_cma_reserve();

/*
* Reserve any gigantic pages requested on the command line.
* memblock needs to have been initialized by the time this is
* called since this will reserve memory.
*/
reserve_hugetlb_gpages();

DBG(" <- early_setup()\n");

#ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
Expand Down Expand Up @@ -687,6 +677,17 @@ void __init setup_arch(char **cmdline_p)
dcache_bsize = ppc64_caches.dline_size;
icache_bsize = ppc64_caches.iline_size;


/* Reserve large chunks of memory for use by CMA for KVM */
kvm_cma_reserve();

/*
* Reserve any gigantic pages requested on the command line.
* memblock needs to have been initialized by the time this is
* called since this will reserve memory.
*/
reserve_hugetlb_gpages();

if (ppc_md.panic)
setup_panic();

Expand All @@ -711,7 +712,6 @@ void __init setup_arch(char **cmdline_p)
#ifdef CONFIG_DUMMY_CONSOLE
conswitchp = &dummy_con;
#endif

if (ppc_md.setup_arch)
ppc_md.setup_arch();

Expand Down

0 comments on commit de4cf3d

Please sign in to comment.