~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/asm-generic/hugetlb.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/asm-generic/hugetlb.h (Architecture sparc64) and /include/asm-mips/hugetlb.h (Architecture mips)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef _ASM_GENERIC_HUGETLB_H                    
  3 #define _ASM_GENERIC_HUGETLB_H                    
  4                                                   
  5 #include <linux/swap.h>                           
  6 #include <linux/swapops.h>                        
  7                                                   
  8 static inline pte_t mk_huge_pte(struct page *p    
  9 {                                                 
 10         return mk_pte(page, pgprot);              
 11 }                                                 
 12                                                   
 13 static inline unsigned long huge_pte_write(pte    
 14 {                                                 
 15         return pte_write(pte);                    
 16 }                                                 
 17                                                   
 18 static inline unsigned long huge_pte_dirty(pte    
 19 {                                                 
 20         return pte_dirty(pte);                    
 21 }                                                 
 22                                                   
 23 static inline pte_t huge_pte_mkwrite(pte_t pte    
 24 {                                                 
 25         return pte_mkwrite_novma(pte);            
 26 }                                                 
 27                                                   
 28 #ifndef __HAVE_ARCH_HUGE_PTE_WRPROTECT            
 29 static inline pte_t huge_pte_wrprotect(pte_t p    
 30 {                                                 
 31         return pte_wrprotect(pte);                
 32 }                                                 
 33 #endif                                            
 34                                                   
 35 static inline pte_t huge_pte_mkdirty(pte_t pte    
 36 {                                                 
 37         return pte_mkdirty(pte);                  
 38 }                                                 
 39                                                   
 40 static inline pte_t huge_pte_modify(pte_t pte,    
 41 {                                                 
 42         return pte_modify(pte, newprot);          
 43 }                                                 
 44                                                   
 45 static inline pte_t huge_pte_mkuffd_wp(pte_t p    
 46 {                                                 
 47         return huge_pte_wrprotect(pte_mkuffd_w    
 48 }                                                 
 49                                                   
 50 static inline pte_t huge_pte_clear_uffd_wp(pte    
 51 {                                                 
 52         return pte_clear_uffd_wp(pte);            
 53 }                                                 
 54                                                   
 55 static inline int huge_pte_uffd_wp(pte_t pte)     
 56 {                                                 
 57         return pte_uffd_wp(pte);                  
 58 }                                                 
 59                                                   
 60 #ifndef __HAVE_ARCH_HUGE_PTE_CLEAR                
 61 static inline void huge_pte_clear(struct mm_st    
 62                     pte_t *ptep, unsigned long    
 63 {                                                 
 64         pte_clear(mm, addr, ptep);                
 65 }                                                 
 66 #endif                                            
 67                                                   
 68 #ifndef __HAVE_ARCH_HUGETLB_FREE_PGD_RANGE        
 69 static inline void hugetlb_free_pgd_range(stru    
 70                 unsigned long addr, unsigned l    
 71                 unsigned long floor, unsigned     
 72 {                                                 
 73         free_pgd_range(tlb, addr, end, floor,     
 74 }                                                 
 75 #endif                                            
 76                                                   
 77 #ifndef __HAVE_ARCH_HUGE_SET_HUGE_PTE_AT          
 78 static inline void set_huge_pte_at(struct mm_s    
 79                 pte_t *ptep, pte_t pte, unsign    
 80 {                                                 
 81         set_pte_at(mm, addr, ptep, pte);          
 82 }                                                 
 83 #endif                                            
 84                                                   
 85 #ifndef __HAVE_ARCH_HUGE_PTEP_GET_AND_CLEAR       
 86 static inline pte_t huge_ptep_get_and_clear(st    
 87                 unsigned long addr, pte_t *pte    
 88 {                                                 
 89         return ptep_get_and_clear(mm, addr, pt    
 90 }                                                 
 91 #endif                                            
 92                                                   
 93 #ifndef __HAVE_ARCH_HUGE_PTEP_CLEAR_FLUSH         
 94 static inline pte_t huge_ptep_clear_flush(stru    
 95                 unsigned long addr, pte_t *pte    
 96 {                                                 
 97         return ptep_clear_flush(vma, addr, pte    
 98 }                                                 
 99 #endif                                            
100                                                   
101 #ifndef __HAVE_ARCH_HUGE_PTE_NONE                 
102 static inline int huge_pte_none(pte_t pte)        
103 {                                                 
104         return pte_none(pte);                     
105 }                                                 
106 #endif                                            
107                                                   
108 /* Please refer to comments above pte_none_mos    
109 static inline int huge_pte_none_mostly(pte_t p    
110 {                                                 
111         return huge_pte_none(pte) || is_pte_ma    
112 }                                                 
113                                                   
114 #ifndef __HAVE_ARCH_PREPARE_HUGEPAGE_RANGE        
115 static inline int prepare_hugepage_range(struc    
116                 unsigned long addr, unsigned l    
117 {                                                 
118         struct hstate *h = hstate_file(file);     
119                                                   
120         if (len & ~huge_page_mask(h))             
121                 return -EINVAL;                   
122         if (addr & ~huge_page_mask(h))            
123                 return -EINVAL;                   
124                                                   
125         return 0;                                 
126 }                                                 
127 #endif                                            
128                                                   
129 #ifndef __HAVE_ARCH_HUGE_PTEP_SET_WRPROTECT       
130 static inline void huge_ptep_set_wrprotect(str    
131                 unsigned long addr, pte_t *pte    
132 {                                                 
133         ptep_set_wrprotect(mm, addr, ptep);       
134 }                                                 
135 #endif                                            
136                                                   
137 #ifndef __HAVE_ARCH_HUGE_PTEP_SET_ACCESS_FLAGS    
138 static inline int huge_ptep_set_access_flags(s    
139                 unsigned long addr, pte_t *pte    
140                 pte_t pte, int dirty)             
141 {                                                 
142         return ptep_set_access_flags(vma, addr    
143 }                                                 
144 #endif                                            
145                                                   
146 #ifndef __HAVE_ARCH_HUGE_PTEP_GET                 
147 static inline pte_t huge_ptep_get(struct mm_st    
148 {                                                 
149         return ptep_get(ptep);                    
150 }                                                 
151 #endif                                            
152                                                   
153 #ifndef __HAVE_ARCH_GIGANTIC_PAGE_RUNTIME_SUPP    
154 static inline bool gigantic_page_runtime_suppo    
155 {                                                 
156         return IS_ENABLED(CONFIG_ARCH_HAS_GIGA    
157 }                                                 
158 #endif /* __HAVE_ARCH_GIGANTIC_PAGE_RUNTIME_SU    
159                                                   
160 #endif /* _ASM_GENERIC_HUGETLB_H */               
161                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php