From cc30e6b95c9a6d29f7d2083c9f64e8dec642a99e Mon Sep 17 00:00:00 2001 From: Kefeng Wang Date: Sat, 30 Jan 2016 15:55:21 +0800 Subject: arm64: mm: dump: Use VA_START directly instead of private LOWEST_ADDR Use VA_START macro in asm/memory.h instead of private LOWEST_ADDR definition in dump.c. Signed-off-by: Kefeng Wang Acked-by: Mark Rutland Signed-off-by: Catalin Marinas diff --git a/arch/arm64/mm/dump.c b/arch/arm64/mm/dump.c index 6be9184..f9271cb 100644 --- a/arch/arm64/mm/dump.c +++ b/arch/arm64/mm/dump.c @@ -27,8 +27,6 @@ #include #include -#define LOWEST_ADDR (UL(0xffffffffffffffff) << VA_BITS) - struct addr_marker { unsigned long start_address; const char *name; @@ -321,7 +319,7 @@ static int ptdump_show(struct seq_file *m, void *v) .marker = address_markers, }; - walk_pgd(&st, &init_mm, LOWEST_ADDR); + walk_pgd(&st, &init_mm, VA_START); note_page(&st, 0, 0, 0); return 0; -- cgit v0.10.2