Skip to content

Commit 7761e36

Browse files
AlexGhitipalmer-dabbelt
authored andcommitted
riscv: Fix PTDUMP output now BPF region moved back to module region
BPF region was moved back to the region below the kernel at the end of the module region by 3a02764 ("riscv: Ensure BPF_JIT_REGION_START aligned with PMD size"), so reflect this change in kernel page table output. Signed-off-by: Alexandre Ghiti <alex@ghiti.fr> Reviewed-by: Jisheng Zhang <jszhang@kernel.org> Fixes: 3a02764 ("riscv: Ensure BPF_JIT_REGION_START aligned with PMD size") Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
1 parent ca6eaaa commit 7761e36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/riscv/mm/ptdump.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ static struct addr_marker address_markers[] = {
9898
{0, "vmalloc() end"},
9999
{0, "Linear mapping"},
100100
#ifdef CONFIG_64BIT
101-
{0, "Modules mapping"},
102-
{0, "Kernel mapping (kernel, BPF)"},
101+
{0, "Modules/BPF mapping"},
102+
{0, "Kernel mapping"},
103103
#endif
104104
{-1, NULL},
105105
};

0 commit comments

Comments
 (0)