From: Wang Kefeng Date: Tue, 13 Sep 2022 04:25:53 +0000 (+0100) Subject: ARM: 9245/1: dump: show FDT region X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=afd1efa1d80162cd48bacb3b848136249df28c62;p=linux.git ARM: 9245/1: dump: show FDT region Since commit 7a1be318f579 ("ARM: 9012/1: move device tree mapping out of linear region"), FDT is placed between the end of the vmalloc region and the start of the fixmap region, let's show it in dump. Signed-off-by: Kefeng Wang Signed-off-by: Russell King (Oracle) --- diff --git a/arch/arm/mm/dump.c b/arch/arm/mm/dump.c index fb688003d156e..d139392cc514e 100644 --- a/arch/arm/mm/dump.c +++ b/arch/arm/mm/dump.c @@ -26,7 +26,7 @@ static struct addr_marker address_markers[] = { { MODULES_VADDR, "Modules" }, { PAGE_OFFSET, "Kernel Mapping" }, { 0, "vmalloc() Area" }, - { VMALLOC_END, "vmalloc() End" }, + { FDT_FIXED_BASE, "FDT Area" }, { FIXADDR_START, "Fixmap Area" }, { VECTORS_BASE, "Vectors" }, { VECTORS_BASE + PAGE_SIZE * 2, "Vectors End" },