treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / powerpc / include / asm / nohash / hugetlb-book3e.h
blobecd8694cb229bc53c949f28dff7df2269d656477
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_NOHASH_HUGETLB_BOOK3E_H
3 #define _ASM_POWERPC_NOHASH_HUGETLB_BOOK3E_H
5 static inline pte_t *hugepd_page(hugepd_t hpd)
7 if (WARN_ON(!hugepd_ok(hpd)))
8 return NULL;
10 return (pte_t *)((hpd_val(hpd) & ~HUGEPD_SHIFT_MASK) | PD_HUGE);
13 static inline unsigned int hugepd_shift(hugepd_t hpd)
15 return hpd_val(hpd) & HUGEPD_SHIFT_MASK;
18 static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr,
19 unsigned int pdshift)
22 * On FSL BookE, we have multiple higher-level table entries that
23 * point to the same hugepte. Just use the first one since they're all
24 * identical. So for that case, idx=0.
26 return hugepd_page(hpd);
29 void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
31 static inline void hugepd_populate(hugepd_t *hpdp, pte_t *new, unsigned int pshift)
33 /* We use the old format for PPC_FSL_BOOK3E */
34 *hpdp = __hugepd(((unsigned long)new & ~PD_HUGE) | pshift);
37 static inline int check_and_get_huge_psize(int shift)
39 if (shift & 1) /* Not a power of 4 */
40 return -EINVAL;
42 return shift_to_mmu_psize(shift);
45 #endif /* _ASM_POWERPC_NOHASH_HUGETLB_BOOK3E_H */