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>
This commit is contained in:
parent
540b573875
commit
140d5dc1d7
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ void show_pte(struct mm_struct *mm, unsigned long addr)
|
||||||
|
|
||||||
pud = pud_offset(pgd, addr);
|
pud = pud_offset(pgd, addr);
|
||||||
if (PTRS_PER_PUD != 1)
|
if (PTRS_PER_PUD != 1)
|
||||||
printk(", *pud=%08lx", pud_val(*pud));
|
printk(", *pud=%08llx", (long long)pud_val(*pud));
|
||||||
|
|
||||||
if (pud_none(*pud))
|
if (pud_none(*pud))
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue