mips: Dump memblock regions for debugging
authorSerge Semin <fancer.lancer@gmail.com>
Fri, 3 May 2019 17:50:37 +0000 (20:50 +0300)
committerPaul Burton <paul.burton@mips.com>
Fri, 3 May 2019 22:24:12 +0000 (15:24 -0700)
It is useful to have the whole memblock memory space printed to console
when basic memlock initializations are done. It can be performed by
ready-to-use method memblock_dump_all(), which prints the available
and reserved memory spaces if memblock=debug kernel parameter is
specified. Lets call it at the very end of arch_mem_init() function,
when all memblock memory and reserved regions are defined, but before
any serious allocation is performed.

Signed-off-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: James Hogan <jhogan@kernel.org>
Cc: Mike Rapoport <rppt@linux.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Thomas Bogendoerfer <tbogendoerfer@suse.de>
Cc: Huacai Chen <chenhc@lemote.com>
Cc: Stefan Agner <stefan@agner.ch>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Serge Semin <Sergey.Semin@t-platforms.ru>
Cc: linux-mips@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
arch/mips/kernel/setup.c

index 2a1b2e7..ca493fd 100644 (file)
@@ -824,6 +824,8 @@ static void __init arch_mem_init(char **cmdline_p)
        /* Reserve for hibernation. */
        memblock_reserve(__pa_symbol(&__nosave_begin),
                __pa_symbol(&__nosave_end) - __pa_symbol(&__nosave_begin));
+
+       memblock_dump_all();
 }
 
 static void __init resource_init(void)