Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-136-generic/arch/powerpc/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_POWERPC_SLICE_H #define _ASM_POWERPC_SLICE_H #ifdef CONFIG_PPC_BOOK3S_64 #include <asm/book3s/64/slice.h> #endif #ifndef __ASSEMBLY__ struct mm_struct; #ifdef CONFIG_PPC_MM_SLICES #ifdef CONFIG_HUGETLB_PAGE #define HAVE_ARCH_HUGETLB_UNMAPPED_AREA #endif #define HAVE_ARCH_UNMAPPED_AREA #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN unsigned long slice_get_unmapped_area(unsigned long addr, unsigned long len, unsigned long flags, unsigned int psize, int topdown); unsigned int get_slice_psize(struct mm_struct *mm, unsigned long addr); void slice_set_range_psize(struct mm_struct *mm, unsigned long start, unsigned long len, unsigned int psize); void slice_init_new_context_exec(struct mm_struct *mm); void slice_setup_new_exec(void); #else /* CONFIG_PPC_MM_SLICES */ static inline void slice_init_new_context_exec(struct mm_struct *mm) {} static inline unsigned int get_slice_psize(struct mm_struct *mm, unsigned long addr) { return 0; } #endif /* CONFIG_PPC_MM_SLICES */ #endif /* __ASSEMBLY__ */ #endif /* _ASM_POWERPC_SLICE_H */