blob: c697ca9dda1869e46ea186f5e993df7f186cebfb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Gerald Schaefer106c9922013-04-29 15:07:23 -07002#ifndef _ASM_GENERIC_HUGETLB_H
3#define _ASM_GENERIC_HUGETLB_H
4
5static inline pte_t mk_huge_pte(struct page *page, pgprot_t pgprot)
6{
7 return mk_pte(page, pgprot);
8}
9
David Miller26794942013-10-02 14:25:09 -040010static inline unsigned long huge_pte_write(pte_t pte)
Gerald Schaefer106c9922013-04-29 15:07:23 -070011{
12 return pte_write(pte);
13}
14
David Miller26794942013-10-02 14:25:09 -040015static inline unsigned long huge_pte_dirty(pte_t pte)
Gerald Schaefer106c9922013-04-29 15:07:23 -070016{
17 return pte_dirty(pte);
18}
19
20static inline pte_t huge_pte_mkwrite(pte_t pte)
21{
22 return pte_mkwrite(pte);
23}
24
25static inline pte_t huge_pte_mkdirty(pte_t pte)
26{
27 return pte_mkdirty(pte);
28}
29
30static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot)
31{
32 return pte_modify(pte, newprot);
33}
34
Alexandre Ghitid0184982018-10-26 15:07:59 -070035#ifndef __HAVE_ARCH_HUGE_PTE_CLEAR
Gerald Schaefer106c9922013-04-29 15:07:23 -070036static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
Punit Agrawal9386fac2017-07-06 15:39:46 -070037 pte_t *ptep, unsigned long sz)
Gerald Schaefer106c9922013-04-29 15:07:23 -070038{
39 pte_clear(mm, addr, ptep);
40}
Punit Agrawal9386fac2017-07-06 15:39:46 -070041#endif
Gerald Schaefer106c9922013-04-29 15:07:23 -070042
Alexandre Ghiti1e5f50f2018-10-26 15:08:03 -070043#ifndef __HAVE_ARCH_HUGETLB_FREE_PGD_RANGE
44static inline void hugetlb_free_pgd_range(struct mmu_gather *tlb,
45 unsigned long addr, unsigned long end,
46 unsigned long floor, unsigned long ceiling)
47{
48 free_pgd_range(tlb, addr, end, floor, ceiling);
49}
50
51
52#endif
53
Gerald Schaefer106c9922013-04-29 15:07:23 -070054#endif /* _ASM_GENERIC_HUGETLB_H */