diff options
author | Kefeng Wang <wangkefeng.wang@huawei.com> | 2016-04-18 06:09:47 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-04-19 19:03:31 +0300 |
commit | 9974723e31d1fa99e3c0efb2ae6cbbf089c0080c (patch) | |
tree | fcc7d95c0502467ec2cd02398cb648b4b184578e /arch/arm64/mm/init.c | |
parent | d32351c8242b7067b3f3e3a6caf7a387ff43f978 (diff) | |
download | linux-9974723e31d1fa99e3c0efb2ae6cbbf089c0080c.tar.xz |
arm64: mm: Show bss segment in kernel memory layout
Show the bss segment information as with text and data in Virtual
memory kernel layout.
Acked-by: James Morse <james.morse@arm.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/mm/init.c')
-rw-r--r-- | arch/arm64/mm/init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index f6ff5b5df9f8..d45f8627012c 100644 --- a/arch/arm64/mm/init.c +++ b/arch/arm64/mm/init.c @@ -437,6 +437,8 @@ void __init mem_init(void) MLK_ROUNDUP(__init_begin, __init_end)); pr_cont(" .data : 0x%p" " - 0x%p" " (%6ld KB)\n", MLK_ROUNDUP(_sdata, _edata)); + pr_cont(" .bss : 0x%p" " - 0x%p" " (%6ld KB)\n", + MLK_ROUNDUP(__bss_start, __bss_stop)); pr_cont(" fixed : 0x%16lx - 0x%16lx (%6ld KB)\n", MLK(FIXADDR_START, FIXADDR_TOP)); pr_cont(" PCI I/O : 0x%16lx - 0x%16lx (%6ld MB)\n", |