OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
powerpc
/
include
/
asm
/
nohash
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
32
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
64
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
pgalloc.h
627 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable.h
7.4 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
pte-book3e.h
2.76 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: pgalloc.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #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 */