]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/sh/include/asm/hugetlb.h
f6a51b609409ffa4f877630e49581fb32117505a
[linux.git] / arch / sh / include / asm / hugetlb.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_SH_HUGETLB_H
3 #define _ASM_SH_HUGETLB_H
4
5 #include <asm/cacheflush.h>
6 #include <asm/page.h>
7
8 static inline int is_hugepage_only_range(struct mm_struct *mm,
9                                          unsigned long addr,
10                                          unsigned long len) {
11         return 0;
12 }
13
14 /*
15  * If the arch doesn't supply something else, assume that hugepage
16  * size aligned regions are ok without further preparation.
17  */
18 static inline int prepare_hugepage_range(struct file *file,
19                         unsigned long addr, unsigned long len)
20 {
21         if (len & ~HPAGE_MASK)
22                 return -EINVAL;
23         if (addr & ~HPAGE_MASK)
24                 return -EINVAL;
25         return 0;
26 }
27
28 static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
29                                    pte_t *ptep, pte_t pte)
30 {
31         set_pte_at(mm, addr, ptep, pte);
32 }
33
34 static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
35                                             unsigned long addr, pte_t *ptep)
36 {
37         return ptep_get_and_clear(mm, addr, ptep);
38 }
39
40 static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
41                                          unsigned long addr, pte_t *ptep)
42 {
43 }
44
45 static inline int huge_pte_none(pte_t pte)
46 {
47         return pte_none(pte);
48 }
49
50 static inline pte_t huge_pte_wrprotect(pte_t pte)
51 {
52         return pte_wrprotect(pte);
53 }
54
55 static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
56                                            unsigned long addr, pte_t *ptep)
57 {
58         ptep_set_wrprotect(mm, addr, ptep);
59 }
60
61 static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
62                                              unsigned long addr, pte_t *ptep,
63                                              pte_t pte, int dirty)
64 {
65         return ptep_set_access_flags(vma, addr, ptep, pte, dirty);
66 }
67
68 static inline pte_t huge_ptep_get(pte_t *ptep)
69 {
70         return *ptep;
71 }
72
73 static inline void arch_clear_hugepage_flags(struct page *page)
74 {
75         clear_bit(PG_dcache_clean, &page->flags);
76 }
77
78 #include <asm-generic/hugetlb.h>
79
80 #endif /* _ASM_SH_HUGETLB_H */