Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
v4.10.11
 
 1#ifndef _ASM_GENERIC_HUGETLB_H
 2#define _ASM_GENERIC_HUGETLB_H
 3
 4static inline pte_t mk_huge_pte(struct page *page, pgprot_t pgprot)
 5{
 6	return mk_pte(page, pgprot);
 7}
 8
 9static inline unsigned long huge_pte_write(pte_t pte)
10{
11	return pte_write(pte);
12}
13
14static inline unsigned long huge_pte_dirty(pte_t pte)
15{
16	return pte_dirty(pte);
17}
18
19static inline pte_t huge_pte_mkwrite(pte_t pte)
20{
21	return pte_mkwrite(pte);
22}
23
24static inline pte_t huge_pte_mkdirty(pte_t pte)
25{
26	return pte_mkdirty(pte);
27}
28
29static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot)
30{
31	return pte_modify(pte, newprot);
32}
33
 
34static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
35				  pte_t *ptep)
36{
37	pte_clear(mm, addr, ptep);
38}
 
39
40#endif /* _ASM_GENERIC_HUGETLB_H */
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#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
10static inline unsigned long huge_pte_write(pte_t pte)
11{
12	return pte_write(pte);
13}
14
15static inline unsigned long huge_pte_dirty(pte_t pte)
16{
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
35#ifndef huge_pte_clear
36static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
37		    pte_t *ptep, unsigned long sz)
38{
39	pte_clear(mm, addr, ptep);
40}
41#endif
42
43#endif /* _ASM_GENERIC_HUGETLB_H */