mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 02:55:42 +07:00
75a9b8a6c2
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>
24 lines
588 B
C
24 lines
588 B
C
#ifndef _ASM_POWERPC_NOHASH_PGALLOC_H
|
|
#define _ASM_POWERPC_NOHASH_PGALLOC_H
|
|
|
|
#include <linux/mm.h>
|
|
|
|
extern void tlb_remove_table(struct mmu_gather *tlb, void *table);
|
|
#ifdef CONFIG_PPC64
|
|
extern void tlb_flush_pgtable(struct mmu_gather *tlb, unsigned long address);
|
|
#else
|
|
/* 44x etc which is BOOKE not BOOK3E */
|
|
static inline void tlb_flush_pgtable(struct mmu_gather *tlb,
|
|
unsigned long address)
|
|
{
|
|
|
|
}
|
|
#endif /* !CONFIG_PPC_BOOK3E */
|
|
|
|
#ifdef CONFIG_PPC64
|
|
#include <asm/nohash/64/pgalloc.h>
|
|
#else
|
|
#include <asm/nohash/32/pgalloc.h>
|
|
#endif
|
|
#endif /* _ASM_POWERPC_NOHASH_PGALLOC_H */
|