arch/arm64/include/asm/memory.h defines PAGE_OFFSET as follows: #define PAGE_OFFSET (UL(0xffffffffffffffff) << (VA_BITS - 1)) Use same definition in makedumpfile as well. Signed-off-by: Pratyush Anand <panand at redhat.com> --- arch/arm64.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm64.c b/arch/arm64.c index c73efa1aad54..ce5869452484 100644 --- a/arch/arm64.c +++ b/arch/arm64.c @@ -203,8 +203,7 @@ get_machdep_info_arm64(void) { info->max_physmem_bits = PHYS_MASK_SHIFT; info->section_size_bits = SECTIONS_SIZE_BITS; - info->page_offset = SYMBOL(_stext) - & (0xffffffffffffffffUL << (VA_BITS - 1)); + info->page_offset = 0xffffffffffffffffUL << (VA_BITS - 1); info->vmalloc_start = 0xffffffffffffffffUL << VA_BITS; info->vmalloc_end = PAGE_OFFSET - PUD_SIZE - VMEMMAP_SIZE - 0x10000; info->vmemmap_start = VMALLOC_END + 0x10000; -- 2.7.4