diff options
author | Vineet Gupta <vgupta@kernel.org> | 2021-08-12 12:54:43 -0700 |
---|---|---|
committer | Vineet Gupta <vgupta@kernel.org> | 2021-08-26 13:42:42 -0700 |
commit | d9820ff76f95fa26d33e412254a89cd65b23142d (patch) | |
tree | 4f7fcc648a3b08f5533923b05abbd00c29879b6d /arch/arc/include/asm/page.h | |
parent | f35534a2bcc7fd614a11aa7e3d91a0b1d6c962fb (diff) | |
download | linux-d9820ff76f95fa26d33e412254a89cd65b23142d.tar.gz linux-d9820ff76f95fa26d33e412254a89cd65b23142d.tar.bz2 linux-d9820ff76f95fa26d33e412254a89cd65b23142d.zip |
ARC: mm: switch pgtable_t back to struct page *
So far ARC pgtable_t has not been struct page based to avoid extra
page_address() calls involved. However the differences are down to
noise and get in the way of using generic code, hence this patch.
This also allows us to reuse generic THP depost/withdraw code.
There's some additional consideration for PGDIR_SHIFT in 4K page config.
Now due to page tables being PAGE_SIZE deep only, the address split
can't be really arbitrary.
Tested-by: kernel test robot <lkp@intel.com>
Suggested-by: Mike Rapoport <rppt@linux.ibm.com>
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Vineet Gupta <vgupta@kernel.org>
Diffstat (limited to 'arch/arc/include/asm/page.h')
-rw-r--r-- | arch/arc/include/asm/page.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/include/asm/page.h b/arch/arc/include/asm/page.h index 313e6f543d2d..28ed82b1800f 100644 --- a/arch/arc/include/asm/page.h +++ b/arch/arc/include/asm/page.h @@ -60,7 +60,7 @@ typedef struct { #define __pgprot(x) ((pgprot_t) { (x) }) #define pte_pgprot(x) __pgprot(pte_val(x)) -typedef pte_t * pgtable_t; +typedef struct page *pgtable_t; /* * Use virt_to_pfn with caution: |