From: Wang Kefeng Date: Wed, 22 Sep 2021 13:56:30 +0000 (+0100) Subject: ARM: 9126/1: mm: Kill page table base print in show_pte() X-Git-Tag: block-5.16-2021-11-13~89^2^3~13 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=93d2043844012d85bf4d36388303d7a0ade87a19;p=linux-2.6-block.git ARM: 9126/1: mm: Kill page table base print in show_pte() Now the show_pts() will dump the virtual (hashed) address of page table base, it is useless, kill it. Signed-off-by: Kefeng Wang Signed-off-by: Russell King (Oracle) --- diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c index 9a6d74f6ea1d..76aced067b12 100644 --- a/arch/arm/mm/fault.c +++ b/arch/arm/mm/fault.c @@ -37,7 +37,6 @@ void show_pte(const char *lvl, struct mm_struct *mm, unsigned long addr) if (!mm) mm = &init_mm; - printk("%spgd = %p\n", lvl, mm->pgd); pgd = pgd_offset(mm, addr); printk("%s[%08lx] *pgd=%08llx", lvl, addr, (long long)pgd_val(*pgd));