| /linux/arch/mips/include/asm/ |
| H A D | pgtable.h | 111 # 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 D | pgtable.h | 35 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 D | pgtable.h | 60 #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 D | mcf_pgtable.h | 99 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 D | sun3_pgtable.h | 79 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 D | motorola_pgtable.h | 84 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 D | pgtable.h | 136 #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 D | pgtable.h | 220 #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 D | pgtable.h | 111 static inline int pte_none(pte_t pte) in pte_none() 120 static inline int pte_read(pte_t pte) in pte_read() 126 static inline int pte_exec(pte_t pte){ in pte_exec() 131 static inline int pte_write(pte_t pte) in pte_write() 137 static inline int pte_dirty(pte_t pte) in pte_dirty() 142 static inline int pte_young(pte_t pte) in pte_young() 147 static inline int pte_needsync(pte_t pte) in pte_needsync() 158 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean() 164 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() 170 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() [all …]
|
| /linux/arch/openrisc/include/asm/ |
| H A D | pgtable.h | 200 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/nios2/include/asm/ |
| H A D | pgtable.h | 87 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 D | pgtable.h | 365 #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/arch/csky/include/asm/ |
| H A D | pgtable.h | 36 #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/xtensa/include/asm/ |
| H A D | pgtable.h | 234 # 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 D | pgtable.h | 169 #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 D | pgtable.h | 151 static inline phys_addr_t __pte_to_phys(pte_t pte) in __pte_to_phys() 162 static inline phys_addr_t __pte_to_phys(pte_t pte) in __pte_to_phys() 173 #define pte_pfn(pte) (__pte_to_phys(pte) >> PAGE_SHIFT) argument 177 #define pte_none(pte) (!pte_val(pte)) argument 180 #define pte_page(pte) (pfn_to_page(pte_pfn(pte))) argument 185 #define pte_present(pte) (pte_valid(pte) || pte_present_invalid(pte)) argument 186 #define pte_young(pte) (!!(pte_val(pte) & PTE_AF)) argument 187 #define pte_special(pte) (!!(pte_val(pte) & PTE_SPECIAL)) argument 188 #define pte_write(pte) (!!(pte_val(pte) & PTE_WRITE)) argument 189 #define pte_rdonly(pte) (!!(pte_val(pte) & PTE_RDONLY)) argument [all …]
|
| /linux/arch/x86/include/asm/ |
| H A D | pgtable.h | 68 #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/loongarch/include/asm/ |
| H A D | pgtable.h | 294 { pte_t pte; pte_val(pte) = ((type & 0x7f) << 16) | (offset << 24); return pte; } in mk_swap_pte() local 299 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument 304 static inline bool pte_swp_exclusive(pte_t pte) in pte_swp_exclusive() 309 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive() 315 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive() 323 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument 324 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument 325 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument 339 pte_t pte = ptep_get(ptep); in pte_clear() local 355 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 D | pgtable.h | 315 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 D | pgtable.c | 49 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 …]
|
| /linux/include/asm-generic/ |
| H A 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/arch/powerpc/include/asm/book3s/64/ |
| H A D | pgtable.h | 389 static inline int pte_write(pte_t pte) in pte_write() 394 static inline int pte_read(pte_t pte) in pte_read() 445 static inline int pte_dirty(pte_t pte) in pte_dirty() 450 static inline int pte_young(pte_t pte) in pte_young() 455 static inline int pte_special(pte_t pte) in pte_special() 460 static inline bool pte_exec(pte_t pte) in pte_exec() 467 static inline bool pte_soft_dirty(pte_t pte) in pte_soft_dirty() 472 static inline pte_t pte_mksoft_dirty(pte_t pte) in pte_mksoft_dirty() 477 static inline pte_t pte_clear_soft_dirty(pte_t pte) in pte_clear_soft_dirty() 484 static inline int pte_protnone(pte_t pte) in pte_protnone() [all …]
|
| /linux/arch/riscv/include/asm/ |
| H A D | pgtable.h | 299 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/drivers/iommu/intel/ |
| H A D | pasid.c | 243 struct pasid_entry *pte; in intel_pasid_tear_down_entry() local 298 struct pasid_entry *pte, in pasid_flush_caches() 323 struct pasid_entry *pte) in intel_pasid_flush_present() 350 struct pasid_entry *pte, in pasid_pte_config_first_level() 380 struct pasid_entry *pte; in intel_pasid_setup_first_level() local 420 struct pasid_entry *pte, new_pte; in intel_pasid_replace_first_level() local 463 struct pasid_entry *pte, in pasid_pte_config_second_level() 486 struct pasid_entry *pte; in intel_pasid_setup_second_level() local 531 struct pasid_entry *pte, new_pte; in intel_pasid_replace_second_level() local 584 struct pasid_entry *pte; in intel_pasid_setup_dirty_tracking() local [all …]
|
| /linux/arch/arc/include/asm/ |
| H A D | pgtable-bits-arcv2.h | 80 #define pte_write(pte) (pte_val(pte) & _PAGE_WRITE) argument 81 #define pte_dirty(pte) (pte_val(pte) & _PAGE_DIRTY) argument 82 #define pte_young(pte) (pte_val(pte) & _PAGE_ACCESSED) argument 83 #define pte_special(pte) (pte_val(pte) & _PAGE_SPECIAL) argument 98 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() 130 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument 133 static inline bool pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
|