arm64: Fix shift warning in arch/arm64/mm/dump.c
authorCatalin Marinas <catalin.marinas@arm.com>
Fri, 5 Dec 2014 12:34:54 +0000 (12:34 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 18 Aug 2016 11:38:11 +0000 (12:38 +0100)
commita93a4d62324123dcda383bdb4ab89151bbc0e499
tree6b33d42b66ef7979d5388873d7dc36d6930e3d53
parentbc9f3d7788a88d080a30599bde68f383daf8f8a5
arm64: Fix shift warning in arch/arm64/mm/dump.c

When building with 48-bit VAs and 16K page configuration, it's possible
to get the following warning when building the arm64 page table dumping
code:

arch/arm64/mm/dump.c: In function ‘walk_pud’:
arch/arm64/mm/dump.c:274:102: warning: right shift count >= width of type [-Wshift-count-overflow]

This is because pud_offset(pgd, 0) performs a shift to the right by 36
while the value 0 has the type 'int' by default, therefore 32-bit.

This patch modifies all the p*_offset() uses in arch/arm64/mm/dump.c to
use 0UL for the address argument.

Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/mm/dump.c