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>
This commit is contained in:
Christophe Leroy 2017-04-18 08:20:15 +02:00 committed by Michael Ellerman
parent 78a18dbf01
commit 2505820f7c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}