/linux-6.1.9/arch/powerpc/include/asm/nohash/ |
D | pgtable.h | 23 static inline int pte_write(pte_t pte) in pte_write() 28 static inline int pte_read(pte_t pte) { return 1; } in pte_read() 29 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 30 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special() 31 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none() 32 static inline bool pte_hashpte(pte_t pte) { return false; } in pte_hashpte() 33 static inline bool pte_ci(pte_t pte) { return pte_val(pte) & _PAGE_NO_CACHE; } in pte_ci() 34 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() 42 static inline int pte_protnone(pte_t pte) in pte_protnone() 53 static inline int pte_present(pte_t pte) in pte_present() [all …]
|
/linux-6.1.9/arch/mips/include/asm/ |
D | pgtable.h | 114 # define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL)) argument 116 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument 119 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument 120 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument 122 static inline void set_pte(pte_t *ptep, pte_t pte) 165 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument 166 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument 167 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument 252 static inline int pte_special(pte_t pte) 257 static inline pte_t pte_mkspecial(pte_t pte) [all …]
|
/linux-6.1.9/arch/m68k/include/asm/ |
D | mcf_pgtable.h | 102 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() 115 #define __pte_page(pte) ((unsigned long) (pte_val(pte) & PAGE_MASK)) argument 118 static inline int pte_none(pte_t pte) in pte_none() 123 static inline int pte_present(pte_t pte) in pte_present() 134 #define pte_pagenr(pte) ((__pte_page(pte) - PAGE_OFFSET) >> PAGE_SHIFT) argument 135 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument 156 static inline int pte_read(pte_t pte) in pte_read() 161 static inline int pte_write(pte_t pte) in pte_write() 166 static inline int pte_exec(pte_t pte) in pte_exec() 171 static inline int pte_dirty(pte_t pte) in pte_dirty() [all …]
|
D | sun3_pgtable.h | 82 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() 90 #define __pte_page(pte) \ argument 98 static inline int pte_none (pte_t pte) { return !pte_val (pte); } in pte_none() 99 static inline int pte_present (pte_t pte) { return pte_val (pte) & SUN3_PAGE_VALID; } in pte_present() 105 #define pte_pfn(pte) (pte_val(pte) & SUN3_PAGE_PGNUM_MASK) argument 109 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument 136 static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; } in pte_write() 137 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & SUN3_PAGE_MODIFIED; } in pte_dirty() 138 static inline int pte_young(pte_t pte) { return pte_val(pte) & SUN3_PAGE_ACCESSED; } in pte_young() 140 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_WRITEABLE; return pte; } in pte_wrprotect() [all …]
|
D | motorola_pgtable.h | 87 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() 103 #define __pte_page(pte) ((unsigned long)__va(pte_val(pte) & PAGE_MASK)) argument 108 #define pte_none(pte) (!pte_val(pte)) argument 109 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument 112 #define pte_page(pte) virt_to_page(__va(pte_val(pte))) argument 113 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument 148 static inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_RONLY); } in pte_write() 149 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 150 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 152 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_RONLY; return pte; } in pte_wrprotect() [all …]
|
/linux-6.1.9/arch/arm/include/asm/ |
D | pgtable.h | 61 #define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte) argument 166 #define pte_pfn(pte) ((pte_val(pte) & PHYS_MASK) >> PAGE_SHIFT) argument 169 #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-6.1.9/arch/hexagon/include/asm/ |
D | pgtable.h | 133 #define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE) argument 142 #define pte_present_exec_user(pte) \ argument 225 static inline int pte_none(pte_t pte) in pte_none() 233 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-6.1.9/arch/s390/include/asm/ |
D | hugetlb.h | 63 pte_t pte, int dirty) in huge_ptep_set_access_flags() 76 pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep); in huge_ptep_set_wrprotect() local 85 static inline int huge_pte_none(pte_t pte) in huge_pte_none() 90 static inline int huge_pte_none_mostly(pte_t pte) in huge_pte_none_mostly() 95 static inline int huge_pte_write(pte_t pte) in huge_pte_write() 100 static inline int huge_pte_dirty(pte_t pte) in huge_pte_dirty() 105 static inline pte_t huge_pte_mkwrite(pte_t pte) in huge_pte_mkwrite() 110 static inline pte_t huge_pte_mkdirty(pte_t pte) in huge_pte_mkdirty() 115 static inline pte_t huge_pte_wrprotect(pte_t pte) in huge_pte_wrprotect() 120 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot) in huge_pte_modify() [all …]
|
/linux-6.1.9/arch/microblaze/include/asm/ |
D | pgtable.h | 218 #define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0) argument 219 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument 242 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read() 243 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } in pte_write() 244 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() 245 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 246 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 248 static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; } in pte_uncache() 249 static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; } in pte_cache() 251 static inline pte_t pte_rdprotect(pte_t pte) \ in pte_rdprotect() [all …]
|
/linux-6.1.9/include/asm-generic/ |
D | hugetlb.h | 13 static inline unsigned long huge_pte_write(pte_t pte) in huge_pte_write() 18 static inline unsigned long huge_pte_dirty(pte_t pte) in huge_pte_dirty() 23 static inline pte_t huge_pte_mkwrite(pte_t pte) in huge_pte_mkwrite() 28 static inline pte_t huge_pte_mkdirty(pte_t pte) in huge_pte_mkdirty() 33 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot) in huge_pte_modify() 38 static inline pte_t huge_pte_mkuffd_wp(pte_t pte) in huge_pte_mkuffd_wp() 43 static inline pte_t huge_pte_clear_uffd_wp(pte_t pte) in huge_pte_clear_uffd_wp() 48 static inline int huge_pte_uffd_wp(pte_t pte) in huge_pte_uffd_wp() 72 pte_t *ptep, pte_t pte) in set_huge_pte_at() 95 static inline int huge_pte_none(pte_t pte) in huge_pte_none() [all …]
|
D | pgtable_uffd.h | 5 static __always_inline int pte_uffd_wp(pte_t pte) in pte_uffd_wp() 15 static __always_inline pte_t pte_mkuffd_wp(pte_t pte) in pte_mkuffd_wp() 25 static __always_inline pte_t pte_clear_uffd_wp(pte_t pte) in pte_clear_uffd_wp() 35 static __always_inline pte_t pte_swp_mkuffd_wp(pte_t pte) in pte_swp_mkuffd_wp() 40 static __always_inline int pte_swp_uffd_wp(pte_t pte) in pte_swp_uffd_wp() 45 static __always_inline pte_t pte_swp_clear_uffd_wp(pte_t pte) in pte_swp_clear_uffd_wp()
|
/linux-6.1.9/arch/powerpc/include/asm/book3s/32/ |
D | pgtable.h | 56 static inline bool pte_user(pte_t pte) in pte_user() 374 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) argument 378 static inline int pte_write(pte_t pte) { return !!(pte_val(pte) & _PAGE_RW);} in pte_write() 379 static inline int pte_read(pte_t pte) { return 1; } in pte_read() 380 static inline int pte_dirty(pte_t pte) { return !!(pte_val(pte) & _PAGE_DIRTY); } in pte_dirty() 381 static inline int pte_young(pte_t pte) { return !!(pte_val(pte) & _PAGE_ACCESSED); } in pte_young() 382 static inline int pte_special(pte_t pte) { return !!(pte_val(pte) & _PAGE_SPECIAL); } in pte_special() 383 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none() 384 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() 386 static inline int pte_present(pte_t pte) in pte_present() [all …]
|
/linux-6.1.9/arch/openrisc/include/asm/ |
D | pgtable.h | 214 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_READ; } in pte_read() 215 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write() 216 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() 217 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 218 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 220 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() 226 static inline pte_t pte_rdprotect(pte_t pte) in pte_rdprotect() 232 static inline pte_t pte_exprotect(pte_t pte) in pte_exprotect() 238 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() 244 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() [all …]
|
/linux-6.1.9/arch/um/include/asm/ |
D | pgtable.h | 108 static inline int pte_none(pte_t pte) in pte_none() 117 static inline int pte_read(pte_t pte) in pte_read() 123 static inline int pte_exec(pte_t pte){ in pte_exec() 128 static inline int pte_write(pte_t pte) in pte_write() 134 static inline int pte_dirty(pte_t pte) in pte_dirty() 139 static inline int pte_young(pte_t pte) in pte_young() 144 static inline int pte_newpage(pte_t pte) in pte_newpage() 149 static inline int pte_newprot(pte_t pte) in pte_newprot() 160 static inline pte_t pte_mknewprot(pte_t pte) in pte_mknewprot() 166 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() [all …]
|
/linux-6.1.9/arch/sparc/include/asm/ |
D | pgtable_64.h | 229 pte_t pte = pfn_pte(page_nr, pgprot); in pfn_pmd() local 237 static inline unsigned long pte_pfn(pte_t pte) in pte_pfn() 258 static inline pte_t pte_modify(pte_t pte, pgprot_t prot) in pte_modify() 319 pte_t pte = __pte(pmd_val(pmd)); in pmd_modify() local 378 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge() 383 static inline bool is_default_hugetlb_pte(pte_t pte) in is_default_hugetlb_pte() 403 pte_t pte = __pte(pmd_val(pmd)); in pmd_mkhuge() local 412 static inline bool is_hugetlb_pte(pte_t pte) in is_hugetlb_pte() 418 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty() 442 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() [all …]
|
D | pgtable_32.h | 150 static inline int pte_present(pte_t pte) in pte_present() 155 static inline int pte_none(pte_t pte) in pte_none() 214 static inline int pte_write(pte_t pte) in pte_write() 219 static inline int pte_dirty(pte_t pte) in pte_dirty() 224 static inline int pte_young(pte_t pte) in pte_young() 229 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() 234 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() 239 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() 244 static inline pte_t pte_mkwrite(pte_t pte) in pte_mkwrite() 249 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty() [all …]
|
/linux-6.1.9/arch/nios2/include/asm/ |
D | pgtable.h | 84 static inline int pte_write(pte_t pte) \ in pte_write() 86 static inline int pte_dirty(pte_t pte) \ in pte_dirty() 88 static inline int pte_young(pte_t pte) \ in pte_young() 102 static inline int pte_none(pte_t pte) in pte_none() 107 static inline int pte_present(pte_t pte) \ in pte_present() 114 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() 120 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() 126 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() 132 static inline pte_t pte_mkwrite(pte_t pte) in pte_mkwrite() 138 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty() [all …]
|
/linux-6.1.9/arch/arm64/include/asm/ |
D | pgtable.h | 77 static inline phys_addr_t __pte_to_phys(pte_t pte) in __pte_to_phys() 87 #define __pte_to_phys(pte) (pte_val(pte) & PTE_ADDR_MASK) argument 91 #define pte_pfn(pte) (__pte_to_phys(pte) >> PAGE_SHIFT) argument 95 #define pte_none(pte) (!pte_val(pte)) argument 97 #define pte_page(pte) (pfn_to_page(pte_pfn(pte))) argument 102 #define pte_present(pte) (!!(pte_val(pte) & (PTE_VALID | PTE_PROT_NONE))) argument 103 #define pte_young(pte) (!!(pte_val(pte) & PTE_AF)) argument 104 #define pte_special(pte) (!!(pte_val(pte) & PTE_SPECIAL)) argument 105 #define pte_write(pte) (!!(pte_val(pte) & PTE_WRITE)) argument 106 #define pte_user(pte) (!!(pte_val(pte) & PTE_USER)) argument [all …]
|
/linux-6.1.9/arch/csky/include/asm/ |
D | pgtable.h | 35 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument 36 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument 41 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument 84 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-6.1.9/arch/powerpc/include/asm/book3s/64/ |
D | pgtable.h | 343 #define pte_pagesize_index(mm, addr, pte) MMU_PAGE_4K argument 404 static inline int __pte_write(pte_t pte) in __pte_write() 411 static inline bool pte_savedwrite(pte_t pte) in pte_savedwrite() 424 static inline bool pte_savedwrite(pte_t pte) in pte_savedwrite() 430 static inline int pte_write(pte_t pte) in pte_write() 435 static inline int pte_read(pte_t pte) in pte_read() 494 static inline int pte_dirty(pte_t pte) in pte_dirty() 499 static inline int pte_young(pte_t pte) in pte_young() 504 static inline int pte_special(pte_t pte) in pte_special() 509 static inline bool pte_exec(pte_t pte) in pte_exec() [all …]
|
/linux-6.1.9/arch/x86/include/asm/ |
D | pgtable.h | 68 #define set_pte(ptep, pte) native_set_pte(ptep, pte) argument 70 #define set_pte_atomic(ptep, pte) \ argument 127 static inline int pte_dirty(pte_t pte) in pte_dirty() 132 static inline int pte_young(pte_t pte) in pte_young() 158 static inline int pte_write(pte_t pte) in pte_write() 163 static inline int pte_huge(pte_t pte) in pte_huge() 168 static inline int pte_global(pte_t pte) in pte_global() 173 static inline int pte_exec(pte_t pte) in pte_exec() 178 static inline int pte_special(pte_t pte) in pte_special() 187 static inline unsigned long pte_pfn(pte_t pte) in pte_pfn() [all …]
|
/linux-6.1.9/arch/xtensa/include/asm/ |
D | pgtable.h | 231 # define pte_none(pte) (pte_val(pte) == (_PAGE_CA_INVALID | _PAGE_USER)) argument 233 # define pte_present(pte) ((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) argument 235 # define pte_present(pte) \ argument 247 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITABLE; } in pte_write() 248 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 249 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 251 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() 253 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() 255 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() 257 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty() [all …]
|
/linux-6.1.9/arch/powerpc/kvm/ |
D | book3s_mmu_hpte.c | 56 void kvmppc_mmu_hpte_cache_map(struct kvm_vcpu *vcpu, struct hpte_cache *pte) in kvmppc_mmu_hpte_cache_map() 97 struct hpte_cache *pte = container_of(head, struct hpte_cache, rcu_head); in free_pte_rcu() local 101 static void invalidate_pte(struct kvm_vcpu *vcpu, struct hpte_cache *pte) in invalidate_pte() 135 struct hpte_cache *pte; in kvmppc_mmu_pte_flush_all() local 154 struct hpte_cache *pte; in kvmppc_mmu_pte_flush_page() local 173 struct hpte_cache *pte; in kvmppc_mmu_pte_flush_long() local 216 struct hpte_cache *pte; in kvmppc_mmu_pte_vflush_short() local 237 struct hpte_cache *pte; in kvmppc_mmu_pte_vflush_64k() local 259 struct hpte_cache *pte; in kvmppc_mmu_pte_vflush_long() local 301 struct hpte_cache *pte; in kvmppc_mmu_pte_pflush() local [all …]
|
/linux-6.1.9/arch/alpha/include/asm/ |
D | pgtable.h | 189 #define pte_pfn(pte) (pte_val(pte) >> 32) argument 191 #define pte_page(pte) pfn_to_page(pte_pfn(pte)) argument 201 { pte_t pte; pte_val(pte) = (PHYS_TWIDDLE(physpfn) << 32) | pgprot_val(pgprot); return pte; } in pfn_pte() local 203 extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() 228 extern inline int pte_none(pte_t pte) { return !pte_val(pte); } in pte_none() 229 extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_VALID; } in pte_present() 249 extern inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_FOW); } in pte_write() 250 extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 251 extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 253 extern inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOW; return pte; } in pte_wrprotect() [all …]
|
/linux-6.1.9/arch/powerpc/mm/ |
D | pgtable.c | 49 static inline int pte_looks_normal(pte_t pte) in pte_looks_normal() 61 static struct page *maybe_pte_to_page(pte_t pte) in maybe_pte_to_page() 82 static pte_t set_pte_filter_hash(pte_t pte) in set_pte_filter_hash() 100 static pte_t set_pte_filter_hash(pte_t pte) { return pte; } in set_pte_filter_hash() 108 static inline pte_t set_pte_filter(pte_t pte) in set_pte_filter() 142 static pte_t set_access_flags_filter(pte_t pte, struct vm_area_struct *vma, in set_access_flags_filter() 191 pte_t pte) in set_pte_at() 242 pte_t pte, int dirty) in huge_ptep_set_access_flags() 282 void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t pte) in set_huge_pte_at()
|