diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2016-04-29 09:26:14 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-05-11 07:53:49 -0400 |
commit | 75a9b8a6c2533064a8d5d090ada7bf9e4c4c84c1 (patch) | |
tree | 84a65863d42b74693e4a9df428fc58617df64ea2 /arch/powerpc/include/asm/nohash/pgalloc.h | |
parent | 101ad5c65ef2631f402643c760574a6f0f7f64d0 (diff) |
powerpc/mm: Copy pgalloc (part 2)
This moves the nohash variant of pgalloc headers to nohash/ directory
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/nohash/pgalloc.h')
-rw-r--r-- | arch/powerpc/include/asm/nohash/pgalloc.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/nohash/pgalloc.h b/arch/powerpc/include/asm/nohash/pgalloc.h new file mode 100644 index 000000000000..b39ec956d71e --- /dev/null +++ b/arch/powerpc/include/asm/nohash/pgalloc.h | |||
@@ -0,0 +1,23 @@ | |||
1 | #ifndef _ASM_POWERPC_NOHASH_PGALLOC_H | ||
2 | #define _ASM_POWERPC_NOHASH_PGALLOC_H | ||
3 | |||
4 | #include <linux/mm.h> | ||
5 | |||
6 | extern void tlb_remove_table(struct mmu_gather *tlb, void *table); | ||
7 | #ifdef CONFIG_PPC64 | ||
8 | extern void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address); | ||
9 | #else | ||
10 | /* 44x etc which is BOOKE not BOOK3E */ | ||
11 | static inline void tlb_flush_pgtable(struct mmu_gather *tlb, | ||
12 | unsigned long address) | ||
13 | { | ||
14 | |||
15 | } | ||
16 | #endif /* !CONFIG_PPC_BOOK3E */ | ||
17 | |||
18 | #ifdef CONFIG_PPC64 | ||
19 | #include <asm/nohash/64/pgalloc.h> | ||
20 | #else | ||
21 | #include <asm/nohash/32/pgalloc.h> | ||
22 | #endif | ||
23 | #endif /* _ASM_POWERPC_NOHASH_PGALLOC_H */ | ||