summaryrefslogtreecommitdiff
path: root/arch/powerpc/mm/dump_linuxpagetables.c
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@c-s.fr>2017-04-18 08:20:15 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2017-04-27 22:20:28 +1000
commit2505820f7ce2da2ef4ca5bd02fc239df0ba87c9f (patch)
tree51f3251f826d057b58bacd27d50d0d0f99ac9473 /arch/powerpc/mm/dump_linuxpagetables.c
parent78a18dbf0104641662d6c28e6832cc24776ba2bc (diff)
powerpc/mm: Rename table dump file name
Page table dump debugfs file is named 'kernel_page_tables' on all other architectures implementing it, while is is named 'kernel_pagetables' on powerpc. This patch renames it. Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/dump_linuxpagetables.c')
-rw-r--r--arch/powerpc/mm/dump_linuxpagetables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/dump_linuxpagetables.c b/arch/powerpc/mm/dump_linuxpagetables.c
index a5b8c16c3d69..d659345a98d6 100644
--- a/arch/powerpc/mm/dump_linuxpagetables.c
+++ b/arch/powerpc/mm/dump_linuxpagetables.c
@@ -513,7 +513,7 @@ static int ptdump_init(void)
populate_markers();
build_pgtable_complete_mask();
- debugfs_file = debugfs_create_file("kernel_pagetables", 0400, NULL,
+ debugfs_file = debugfs_create_file("kernel_page_tables", 0400, NULL,
NULL, &ptdump_fops);
return debugfs_file ? 0 : -ENOMEM;
}