mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-10 03:20:49 +00:00
arm64: mm: list kernel sections in order
In the boot log, instead of listing .init first, list .text, .rodata, .init and .data in the same order they appear in memory Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
This commit is contained in:
parent
5be8b70af1
commit
a6e1f7273b
@ -361,9 +361,9 @@ void __init mem_init(void)
|
|||||||
#endif
|
#endif
|
||||||
" modules : 0x%16lx - 0x%16lx (%6ld MB)\n"
|
" modules : 0x%16lx - 0x%16lx (%6ld MB)\n"
|
||||||
" vmalloc : 0x%16lx - 0x%16lx (%6ld GB)\n"
|
" vmalloc : 0x%16lx - 0x%16lx (%6ld GB)\n"
|
||||||
" .init : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
|
||||||
" .text : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
" .text : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
||||||
" .rodata : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
" .rodata : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
||||||
|
" .init : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
||||||
" .data : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
" .data : 0x%p" " - 0x%p" " (%6ld KB)\n"
|
||||||
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
||||||
" vmemmap : 0x%16lx - 0x%16lx (%6ld GB maximum)\n"
|
" vmemmap : 0x%16lx - 0x%16lx (%6ld GB maximum)\n"
|
||||||
@ -377,9 +377,9 @@ void __init mem_init(void)
|
|||||||
#endif
|
#endif
|
||||||
MLM(MODULES_VADDR, MODULES_END),
|
MLM(MODULES_VADDR, MODULES_END),
|
||||||
MLG(VMALLOC_START, VMALLOC_END),
|
MLG(VMALLOC_START, VMALLOC_END),
|
||||||
MLK_ROUNDUP(__init_begin, __init_end),
|
|
||||||
MLK_ROUNDUP(_text, __start_rodata),
|
MLK_ROUNDUP(_text, __start_rodata),
|
||||||
MLK_ROUNDUP(__start_rodata, _etext),
|
MLK_ROUNDUP(__start_rodata, _etext),
|
||||||
|
MLK_ROUNDUP(__init_begin, __init_end),
|
||||||
MLK_ROUNDUP(_sdata, _edata),
|
MLK_ROUNDUP(_sdata, _edata),
|
||||||
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
||||||
MLG((unsigned long)vmemmap,
|
MLG((unsigned long)vmemmap,
|
||||||
|
Loading…
Reference in New Issue
Block a user