Re: [PATCH v2 10/15] MIPS: memblock: Allow memblock regions resize

From: Matt Redfearn
Date: Tue Feb 13 2018 - 09:03:27 EST


Hi Serge,

On 02/02/18 03:54, Serge Semin wrote:
When all the main reservations are done the memblock regions
can be dynamically resized. Additionally it would be useful to have
memblock regions dumped on debug at this point.

Signed-off-by: Serge Semin <fancer.lancer@xxxxxxxxx>

Looks good to me.

Reviewed-by: Matt Redfearn <matt.redfearn@xxxxxxxx>

Thanks,
Matt

---
arch/mips/kernel/setup.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
index 158a52c17e29..531a1471a2a4 100644
--- a/arch/mips/kernel/setup.c
+++ b/arch/mips/kernel/setup.c
@@ -846,6 +846,10 @@ static void __init arch_mem_init(char **cmdline_p)
plat_swiotlb_setup();
dma_contiguous_reserve(PFN_PHYS(max_low_pfn));
+
+ memblock_allow_resize();
+
+ memblock_dump_all();
}
static void __init resource_init(void)