diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2019-04-26 11:58:08 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2019-05-02 11:20:25 -0400 |
commit | dc096864ba784c2d3d10480d71f14a53f40f997c (patch) | |
tree | 62717a0cb94369ad9c1879f7e69e0a3cf64ba428 /arch/powerpc/include/asm/pgalloc.h | |
parent | b0124ff57e9405725b4dfeffbdfa929bb973ad2c (diff) |
powerpc/mm: refactor pte_alloc_one() and pte_free() families definition.
Functions pte_alloc_one(), pte_alloc_one_kernel(), pte_free(),
pte_free_kernel() are identical for the four subarches.
This patch moves their definition in a common place.
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/pgalloc.h')
-rw-r--r-- | arch/powerpc/include/asm/pgalloc.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/pgalloc.h b/arch/powerpc/include/asm/pgalloc.h index e11f03007b57..c2c6fd438840 100644 --- a/arch/powerpc/include/asm/pgalloc.h +++ b/arch/powerpc/include/asm/pgalloc.h | |||
@@ -20,6 +20,31 @@ static inline gfp_t pgtable_gfp_flags(struct mm_struct *mm, gfp_t gfp) | |||
20 | 20 | ||
21 | #define PGALLOC_GFP (GFP_KERNEL | __GFP_ZERO) | 21 | #define PGALLOC_GFP (GFP_KERNEL | __GFP_ZERO) |
22 | 22 | ||
23 | pte_t *pte_fragment_alloc(struct mm_struct *mm, int kernel); | ||
24 | |||
25 | static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) | ||
26 | { | ||
27 | return (pte_t *)pte_fragment_alloc(mm, 1); | ||
28 | } | ||
29 | |||
30 | static inline pgtable_t pte_alloc_one(struct mm_struct *mm) | ||
31 | { | ||
32 | return (pgtable_t)pte_fragment_alloc(mm, 0); | ||
33 | } | ||
34 | |||
35 | void pte_frag_destroy(void *pte_frag); | ||
36 | void pte_fragment_free(unsigned long *table, int kernel); | ||
37 | |||
38 | static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) | ||
39 | { | ||
40 | pte_fragment_free((unsigned long *)pte, 1); | ||
41 | } | ||
42 | |||
43 | static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage) | ||
44 | { | ||
45 | pte_fragment_free((unsigned long *)ptepage, 0); | ||
46 | } | ||
47 | |||
23 | #ifdef CONFIG_PPC_BOOK3S | 48 | #ifdef CONFIG_PPC_BOOK3S |
24 | #include <asm/book3s/pgalloc.h> | 49 | #include <asm/book3s/pgalloc.h> |
25 | #else | 50 | #else |