Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: 7000/1: LPAE: Use long long printk format for displaying the pud

Currently using just long but this is not enough for the LPAE format
(64-bit entries).

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Catalin Marinas and committed by
Russell King
140d5dc1 540b5738

+1 -1
+1 -1
arch/arm/mm/fault.c
··· 94 94 95 95 pud = pud_offset(pgd, addr); 96 96 if (PTRS_PER_PUD != 1) 97 - printk(", *pud=%08lx", pud_val(*pud)); 97 + printk(", *pud=%08llx", (long long)pud_val(*pud)); 98 98 99 99 if (pud_none(*pud)) 100 100 break;