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: locking-urgent-2021-11-14~100^2^3~13 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=93d2043844012d85bf4d36388303d7a0ade87a19;p=users%2Fdwmw2%2Flinux.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 9a6d74f6ea1d1..76aced067b122 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));