]> git.baikalelectronics.ru Git - kernel.git/commit
ARM: 8820/1: mm: Stop printing the virtual memory layout
authorGeert Uytterhoeven <geert@linux-m68k.org>
Tue, 8 Jan 2019 13:27:01 +0000 (14:27 +0100)
committerRussell King <rmk+kernel@armlinux.org.uk>
Fri, 1 Feb 2019 21:44:08 +0000 (21:44 +0000)
commit5ac12186cfbe1da0145777ae995c1aa0a120963c
treedb32368b58cd4738fc543ec8f209118a0244b74f
parent33e72018b0fd2591207a7b88b83c1e1faf789488
ARM: 8820/1: mm: Stop printing the virtual memory layout

Since commit c50104c2c22fe576 ("printk: hash addresses printed with
%p"), the virtual memory layout printed during boot up contains "ptrval"
instead of actual addresses:

    Memory: 501296K/524288K available (6144K kernel code, 528K rwdata, 1944K rodata, 1024K init, 7584K bss, 22992K reserved, 0K cma-reserved)
    Virtual kernel memory layout:
vector  : 0xffff0000 - 0xffff1000   (   4 kB)
fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
vmalloc : 0xe0800000 - 0xff800000   ( 496 MB)
lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
modules : 0xbf000000 - 0xc0000000   (  16 MB)
  .text : 0x(ptrval) - 0x(ptrval)   (7136 kB)
  .init : 0x(ptrval) - 0x(ptrval)   (1024 kB)
  .data : 0x(ptrval) - 0x(ptrval)   ( 529 kB)
   .bss : 0x(ptrval) - 0x(ptrval)   (7585 kB)

Instead of changing the printing to "%px", and leaking virtual memory
layout information again, just remove the printing completely, cfr. e.g.
commits d348227135b3b59c ("arm64: Stop printing the virtual memory
layout") and  12f24912cbf3e1bc ("m68k/mm: Stop printing the virtual
memory layout").

All interesting information (actual section sizes) is already printed by
mem_init_print_info() just above anyway.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
arch/arm/mm/init.c