%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/* 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> #elif defined(CONFIG_PPC_MMU_NOHASH_32) #include <asm/nohash/32/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 */