Home
last modified time | relevance | path

Searched defs:pte (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/linux/arch/mips/include/asm/
H A Dpgtable.h111 # define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL)) argument
113 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
116 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
117 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
119 static inline void set_pte(pte_t *ptep, pte_t pte)
162 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
163 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
164 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
205 pte_t *ptep, pte_t pte, unsigned int nr)
262 static inline int pte_special(pte_t pte)
[all …]
/linux/arch/powerpc/include/asm/nohash/
H A Dpgtable.h35 static inline unsigned long pte_huge_size(pte_t pte) in pte_huge_size()
153 static inline pte_t pte_mkwrite_novma(pte_t pte) in pte_mkwrite_novma()
162 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
167 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
173 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
180 static inline pte_t pte_mkexec(pte_t pte) in pte_mkexec()
187 static inline int pte_write(pte_t pte) in pte_write()
192 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
193 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special()
194 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none()
[all …]
/linux/arch/arm/include/asm/
H A Dpgtable.h60 #define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte) argument
167 #define pte_pfn(pte) ((pte_val(pte) & PHYS_MASK) >> PAGE_SHIFT) argument
170 #define pte_page(pte) pfn_to_page(pte_pfn(pte)) argument
174 #define pte_isset(pte, val) ((u32)(val) == (val) ? pte_val(pte) & (val) \ argument
176 #define pte_isclear(pte, val) (!(pte_val(pte) & (val))) argument
178 #define pte_none(pte) (!pte_val(pte)) argument
179 #define pte_present(pte) (pte_isset((pte), L_PTE_PRESENT)) argument
180 #define pte_valid(pte) (pte_isset((pte), L_PTE_VALID)) argument
181 #define pte_accessible(mm, pte) (mm_tlb_flush_pending(mm) ? pte_present(pte) : pte_valid(pte)) argument
182 #define pte_write(pte) (pte_isclear((pte), L_PTE_RDONLY)) argument
[all …]
/linux/arch/m68k/include/asm/
H A Dmcf_pgtable.h99 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
112 #define __pte_page(pte) ((void *) (pte_val(pte) & PAGE_MASK)) argument
115 static inline int pte_none(pte_t pte) in pte_none()
120 static inline int pte_present(pte_t pte) in pte_present()
131 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument
152 static inline int pte_read(pte_t pte) in pte_read()
157 static inline int pte_write(pte_t pte) in pte_write()
162 static inline int pte_exec(pte_t pte) in pte_exec()
167 static inline int pte_dirty(pte_t pte) in pte_dirty()
172 static inline int pte_young(pte_t pte) in pte_young()
[all …]
H A Dsun3_pgtable.h79 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
87 #define __pte_page(pte) \ argument
95 static inline int pte_none (pte_t pte) { return !pte_val (pte); } in pte_none()
96 static inline int pte_present (pte_t pte) { return pte_val (pte) & SUN3_PAGE_VALID; } in pte_present()
103 #define pte_pfn(pte) (pte_val(pte) & SUN3_PAGE_PGNUM_MASK) argument
107 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument
134 static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; } in pte_write()
135 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & SUN3_PAGE_MODIFIED; } in pte_dirty()
136 static inline int pte_young(pte_t pte) { return pte_val(pte) & SUN3_PAGE_ACCESSED; } in pte_young()
138 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_WRITEABLE; return pte; } in pte_wrprotect()
[all …]
H A Dmotorola_pgtable.h84 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
100 #define __pte_page(pte) ((unsigned long)__va(pte_val(pte) & PAGE_MASK)) argument
105 #define pte_none(pte) (!pte_val(pte)) argument
106 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument
110 #define pte_page(pte) virt_to_page(__va(pte_val(pte))) argument
111 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument
146 static inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_RONLY); } in pte_write()
147 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
148 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
150 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_RONLY; return pte; } in pte_wrprotect()
[all …]
/linux/arch/hexagon/include/asm/
H A Dpgtable.h136 #define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE) argument
145 #define pte_present_exec_user(pte) \ argument
228 static inline int pte_none(pte_t pte) in pte_none()
236 static inline int pte_present(pte_t pte) in pte_present()
245 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
252 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
259 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
266 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
273 static inline int pte_young(pte_t pte) in pte_young()
279 static inline int pte_dirty(pte_t pte) in pte_dirty()
[all …]
/linux/arch/microblaze/include/asm/
H A Dpgtable.h220 #define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0) argument
221 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
244 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read()
245 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } in pte_write()
246 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec()
247 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
248 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
250 static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; } in pte_uncache()
251 static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; } in pte_cache()
253 static inline pte_t pte_rdprotect(pte_t pte) \ in pte_rdprotect()
[all …]
/linux/arch/um/include/asm/
H A Dpgtable.h113 static inline int pte_none(pte_t pte) in pte_none()
122 static inline int pte_read(pte_t pte) in pte_read()
128 static inline int pte_exec(pte_t pte){ in pte_exec()
133 static inline int pte_write(pte_t pte) in pte_write()
139 static inline int pte_dirty(pte_t pte) in pte_dirty()
144 static inline int pte_young(pte_t pte) in pte_young()
149 static inline int pte_needsync(pte_t pte) in pte_needsync()
160 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
166 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
172 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
[all …]
/linux/arch/csky/include/asm/
H A Dpgtable.h36 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
37 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
42 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument
85 static inline void set_pte(pte_t *p, pte_t pte) in set_pte()
141 static inline int pte_read(pte_t pte) in pte_read()
146 static inline int pte_write(pte_t pte) in pte_write()
151 static inline int pte_dirty(pte_t pte) in pte_dirty()
156 static inline int pte_young(pte_t pte) in pte_young()
161 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
167 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
[all …]
/linux/arch/openrisc/include/asm/
H A Dpgtable.h200 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_READ; } in pte_read()
201 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()
202 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec()
203 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
204 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
206 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
212 static inline pte_t pte_rdprotect(pte_t pte) in pte_rdprotect()
218 static inline pte_t pte_exprotect(pte_t pte) in pte_exprotect()
224 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
230 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
[all …]
/linux/arch/sparc/include/asm/
H A Dpgtable_64.h232 pte_t pte = pfn_pte(page_nr, pgprot); in pfn_pmd() local
239 static inline unsigned long pte_pfn(pte_t pte) in pte_pfn()
260 static inline pte_t pte_modify(pte_t pte, pgprot_t prot) in pte_modify()
321 pte_t pte = __pte(pmd_val(pmd)); in pmd_modify() local
359 static inline unsigned long pte_dirty(pte_t pte) in pte_dirty()
377 static inline unsigned long pte_write(pte_t pte) in pte_write()
416 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
421 static inline bool is_default_hugetlb_pte(pte_t pte) in is_default_hugetlb_pte()
441 pte_t pte = __pte(pmd_val(pmd)); in pmd_mkhuge() local
450 static inline bool is_hugetlb_pte(pte_t pte) in is_hugetlb_pte()
[all …]
H A Dpgtable_32.h148 static inline int pte_present(pte_t pte) in pte_present()
153 static inline int pte_none(pte_t pte) in pte_none()
212 static inline int pte_write(pte_t pte) in pte_write()
217 static inline int pte_dirty(pte_t pte) in pte_dirty()
222 static inline int pte_young(pte_t pte) in pte_young()
227 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
232 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
237 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
242 static inline pte_t pte_mkwrite_novma(pte_t pte) in pte_mkwrite_novma()
247 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
[all …]
/linux/arch/nios2/include/asm/
H A Dpgtable.h87 static inline int pte_write(pte_t pte) \ in pte_write()
89 static inline int pte_dirty(pte_t pte) \ in pte_dirty()
91 static inline int pte_young(pte_t pte) \ in pte_young()
105 static inline int pte_none(pte_t pte) in pte_none()
110 static inline int pte_present(pte_t pte) \ in pte_present()
117 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
123 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
129 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
135 static inline pte_t pte_mkwrite_novma(pte_t pte) in pte_mkwrite_novma()
141 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
[all …]
/linux/arch/powerpc/include/asm/book3s/32/
H A Dpgtable.h365 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) argument
368 static inline bool pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
373 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
378 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
384 static inline bool pte_read(pte_t pte) in pte_read()
389 static inline bool pte_write(pte_t pte) in pte_write()
394 static inline int pte_dirty(pte_t pte) { return !!(pte_val(pte) & _PAGE_DIRTY); } in pte_dirty()
395 static inline int pte_young(pte_t pte) { return !!(pte_val(pte) & _PAGE_ACCESSED); } in pte_young()
396 static inline int pte_special(pte_t pte) { return !!(pte_val(pte) & _PAGE_SPECIAL); } in pte_special()
397 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none()
[all …]
/linux/include/asm-generic/
H A Dhugetlb.h8 static inline unsigned long huge_pte_write(pte_t pte) in huge_pte_write()
13 static inline unsigned long huge_pte_dirty(pte_t pte) in huge_pte_dirty()
18 static inline pte_t huge_pte_mkwrite(pte_t pte) in huge_pte_mkwrite()
24 static inline pte_t huge_pte_wrprotect(pte_t pte) in huge_pte_wrprotect()
30 static inline pte_t huge_pte_mkdirty(pte_t pte) in huge_pte_mkdirty()
35 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot) in huge_pte_modify()
41 static inline pte_t huge_pte_mkuffd_wp(pte_t pte) in huge_pte_mkuffd_wp()
48 static inline pte_t huge_pte_clear_uffd_wp(pte_t pte) in huge_pte_clear_uffd_wp()
55 static inline int huge_pte_uffd_wp(pte_t pte) in huge_pte_uffd_wp()
71 pte_t *ptep, pte_t pte, unsigned long sz) in set_huge_pte_at()
[all …]
H A Dpgtable_uffd.h22 static __always_inline int pte_uffd_wp(pte_t pte) in pte_uffd_wp()
32 static __always_inline pte_t pte_mkuffd_wp(pte_t pte) in pte_mkuffd_wp()
42 static __always_inline pte_t pte_clear_uffd_wp(pte_t pte) in pte_clear_uffd_wp()
52 static __always_inline pte_t pte_swp_mkuffd_wp(pte_t pte) in pte_swp_mkuffd_wp()
57 static __always_inline int pte_swp_uffd_wp(pte_t pte) in pte_swp_uffd_wp()
62 static __always_inline pte_t pte_swp_clear_uffd_wp(pte_t pte) in pte_swp_clear_uffd_wp()
/linux/arch/xtensa/include/asm/
H A Dpgtable.h234 # define pte_none(pte) (pte_val(pte) == (_PAGE_CA_INVALID | _PAGE_USER)) argument
236 # define pte_present(pte) ((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) argument
238 # define pte_present(pte) \ argument
250 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITABLE; } in pte_write()
251 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
252 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
254 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
256 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
258 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
260 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
[all …]
/linux/arch/alpha/include/asm/
H A Dpgtable.h169 #define pte_pfn(pte) (pte_val(pte) >> PFN_PTE_SHIFT) argument
171 #define pte_page(pte) pfn_to_page(pte_pfn(pte)) argument
174 { pte_t pte; pte_val(pte) = (PHYS_TWIDDLE(physpfn) << 32) | pgprot_val(pgprot); return pte; } in pfn_pte() local
176 extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
201 extern inline int pte_none(pte_t pte) { return !pte_val(pte); } in pte_none()
202 extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_VALID; } in pte_present()
222 extern inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_FOW); } in pte_write()
223 extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
224 extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
226 extern inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOW; return pte; } in pte_wrprotect()
[all …]
/linux/arch/arm64/include/asm/
H A Dpgtable.h155 static inline phys_addr_t __pte_to_phys(pte_t pte) in __pte_to_phys()
166 static inline phys_addr_t __pte_to_phys(pte_t pte) in __pte_to_phys()
177 #define pte_pfn(pte) (__pte_to_phys(pte) >> PAGE_SHIFT) argument
181 #define pte_none(pte) (!pte_val(pte)) argument
184 #define pte_page(pte) (pfn_to_page(pte_pfn(pte))) argument
189 #define pte_present(pte) (pte_valid(pte) || pte_present_invalid(pte)) argument
190 #define pte_young(pte) (!!(pte_val(pte) & PTE_AF)) argument
191 #define pte_special(pte) (!!(pte_val(pte) & PTE_SPECIAL)) argument
192 #define pte_write(pte) (!!(pte_val(pte) & PTE_WRITE)) argument
193 #define pte_rdonly(pte) (!!(pte_val(pte) & PTE_RDONLY)) argument
[all …]
/linux/arch/x86/include/asm/
H A Dpgtable.h68 #define set_pte(ptep, pte) native_set_pte(ptep, pte) argument
70 #define set_pte_atomic(ptep, pte) \ argument
155 static inline bool pte_dirty(pte_t pte) in pte_dirty()
160 static inline bool pte_shstk(pte_t pte) in pte_shstk()
166 static inline int pte_young(pte_t pte) in pte_young()
171 static inline bool pte_decrypted(pte_t pte) in pte_decrypted()
212 static inline int pte_write(pte_t pte) in pte_write()
237 static inline int pte_huge(pte_t pte) in pte_huge()
242 static inline int pte_global(pte_t pte) in pte_global()
247 static inline int pte_exec(pte_t pte) in pte_exec()
[all …]
/linux/arch/riscv/include/asm/
H A Dpgtable.h299 static inline unsigned long pte_napot(pte_t pte) in pte_napot()
304 static inline pte_t pte_mknapot(pte_t pte, unsigned int order) in pte_mknapot()
317 static inline unsigned long pte_napot(pte_t pte) in pte_napot()
325 static inline unsigned long pte_pfn(pte_t pte) in pte_pfn()
348 static inline pgprot_t pte_pgprot(pte_t pte) in pte_pgprot()
355 static inline int pte_present(pte_t pte) in pte_present()
373 static inline int pte_none(pte_t pte) in pte_none()
378 static inline int pte_write(pte_t pte) in pte_write()
383 static inline int pte_exec(pte_t pte) in pte_exec()
388 static inline int pte_user(pte_t pte) in pte_user()
[all …]
/linux/arch/loongarch/include/asm/
H A Dpgtable.h325 pte_t pte; in mk_swap_pte() local
336 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument
339 static inline bool pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
344 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
350 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
358 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
359 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument
360 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
374 pte_t pte = ptep_get(ptep); in pte_clear() local
390 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()
[all …]
/linux/arch/parisc/include/asm/
H A Dpgtable.h315 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
316 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
317 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()
318 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special()
320 static inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~_PAGE_DIRTY; return pte; } in pte_mkclean()
321 static inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; } in pte_mkold()
322 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_WRITE; return pte; } in pte_wrprotect()
323 static inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= _PAGE_DIRTY; return pte; } in pte_mkdirty()
324 static inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= _PAGE_ACCESSED; return pte; } in pte_mkyoung()
325 static inline pte_t pte_mkwrite_novma(pte_t pte) { pte_val(pte) |= _PAGE_WRITE; return pte; } in pte_mkwrite_novma()
[all …]
/linux/arch/powerpc/mm/
H A Dpgtable.c49 static inline int pte_looks_normal(pte_t pte, unsigned long addr) in pte_looks_normal()
61 static struct folio *maybe_pte_to_folio(pte_t pte) in maybe_pte_to_folio()
82 static pte_t set_pte_filter_hash(pte_t pte, unsigned long addr) in set_pte_filter_hash()
100 static pte_t set_pte_filter_hash(pte_t pte, unsigned long addr) { return pte; } in set_pte_filter_hash()
110 static inline pte_t set_pte_filter(pte_t pte, unsigned long addr) in set_pte_filter()
144 static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma, in set_access_flags_filter()
193 pte_t pte, unsigned int nr) in set_ptes()
260 pte_t pte, int dirty) in huge_ptep_set_access_flags()
324 pte_t pte, unsigned long sz) in set_huge_pte_at()
342 pte_t pte, unsigned long sz) in set_huge_pte_at()
[all …]

12345678910>>...15