aboutsummaryrefslogtreecommitdiff
path: root/arch/nios2/mm/pgtable.c
diff options
context:
space:
mode:
authorMike Rapoport <[email protected]>2022-07-03 17:11:57 +0300
committerakpm <[email protected]>2022-07-17 17:14:43 -0700
commita6714e720b5e8438ca7f779342ad91b39094f548 (patch)
treef245dafd0f260b360ce5a253d4401895d06dbebe /arch/nios2/mm/pgtable.c
parentbf0dc119c51ffdcfa6db0786ea877eec85985b7e (diff)
nios2: drop definition of PGD_ORDER
This is the order of the page table allocation, not the order of a PGD. Since its always hardwired to 0, simply drop it. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Mike Rapoport <[email protected]> Acked-by: Dinh Nguyen <[email protected]> Cc: Arnd Bergmann <[email protected]> Cc: Guo Ren <[email protected]> Cc: Helge Deller <[email protected]> Cc: Huacai Chen <[email protected]> Cc: James Bottomley <[email protected]> Cc: "Matthew Wilcox (Oracle)" <[email protected]> Cc: Max Filippov <[email protected]> Cc: Thomas Bogendoerfer <[email protected]> Cc: Xuerui Wang <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'arch/nios2/mm/pgtable.c')
-rw-r--r--arch/nios2/mm/pgtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nios2/mm/pgtable.c b/arch/nios2/mm/pgtable.c
index 9b587fd592dd..7c76e8a7447a 100644
--- a/arch/nios2/mm/pgtable.c
+++ b/arch/nios2/mm/pgtable.c
@@ -54,7 +54,7 @@ pgd_t *pgd_alloc(struct mm_struct *mm)
{
pgd_t *ret, *init;
- ret = (pgd_t *) __get_free_pages(GFP_KERNEL, PGD_ORDER);
+ ret = (pgd_t *) __get_free_page(GFP_KERNEL);
if (ret) {
init = pgd_offset(&init_mm, 0UL);
pgd_init(ret);