/Linux-v5.15/arch/mips/include/asm/ |
D | pgtable.h | 67 extern void __update_cache(unsigned long address, pte_t pte); 132 # define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL)) argument 134 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument 137 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument 138 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument 140 static inline void set_pte(pte_t *ptep, pte_t pte) argument 142 ptep->pte_high = pte.pte_high; 144 ptep->pte_low = pte.pte_low; 147 if (pte.pte_high & _PAGE_GLOBAL) { 149 if (pte.pte_low & _PAGE_GLOBAL) { [all …]
|
/Linux-v5.15/arch/um/include/asm/ |
D | pgtable.h | 124 static inline int pte_none(pte_t pte) in pte_none() argument 126 return pte_is_zero(pte); in pte_none() 133 static inline int pte_read(pte_t pte) in pte_read() argument 135 return((pte_get_bits(pte, _PAGE_USER)) && in pte_read() 136 !(pte_get_bits(pte, _PAGE_PROTNONE))); in pte_read() 139 static inline int pte_exec(pte_t pte){ in pte_exec() argument 140 return((pte_get_bits(pte, _PAGE_USER)) && in pte_exec() 141 !(pte_get_bits(pte, _PAGE_PROTNONE))); in pte_exec() 144 static inline int pte_write(pte_t pte) in pte_write() argument 146 return((pte_get_bits(pte, _PAGE_RW)) && in pte_write() [all …]
|
/Linux-v5.15/arch/m68k/include/asm/ |
D | mcf_pgtable.h | 161 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument 163 pte_val(pte) = (pte_val(pte) & CF_PAGE_CHG_MASK) | pgprot_val(newprot); in pte_modify() 164 return pte; in pte_modify() 174 #define __pte_page(pte) ((unsigned long) (pte_val(pte) & PAGE_MASK)) argument 177 static inline int pte_none(pte_t pte) in pte_none() argument 179 return !pte_val(pte); in pte_none() 182 static inline int pte_present(pte_t pte) in pte_present() argument 184 return pte_val(pte) & CF_PAGE_VALID; in pte_present() 193 #define pte_pagenr(pte) ((__pte_page(pte) - PAGE_OFFSET) >> PAGE_SHIFT) argument 194 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument [all …]
|
D | sun3_pgtable.h | 105 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument 107 pte_val(pte) = (pte_val(pte) & SUN3_PAGE_CHG_MASK) | pgprot_val(newprot); in pte_modify() 108 return pte; in pte_modify() 113 #define __pte_page(pte) \ argument 114 ((unsigned long) __va ((pte_val (pte) & SUN3_PAGE_PGNUM_MASK) << PAGE_SHIFT)) 121 static inline int pte_none (pte_t pte) { return !pte_val (pte); } in pte_none() argument 122 static inline int pte_present (pte_t pte) { return pte_val (pte) & SUN3_PAGE_VALID; } in pte_present() argument 128 #define pte_pfn(pte) (pte_val(pte) & SUN3_PAGE_PGNUM_MASK) argument 132 #define pte_page(pte) virt_to_page(__pte_page(pte)) argument 158 static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; } in pte_write() argument [all …]
|
D | motorola_pgtable.h | 116 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument 118 pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); in pte_modify() 119 return pte; in pte_modify() 132 #define __pte_page(pte) ((unsigned long)__va(pte_val(pte) & PAGE_MASK)) argument 137 #define pte_none(pte) (!pte_val(pte)) argument 138 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument 141 #define pte_page(pte) virt_to_page(__va(pte_val(pte))) argument 142 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument 176 static inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_RONLY); } in pte_write() argument 177 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() argument [all …]
|
/Linux-v5.15/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() argument 61 trace_kvm_book3s_mmu_map(pte); in kvmppc_mmu_hpte_cache_map() 66 index = kvmppc_mmu_hash_pte(pte->pte.eaddr); in kvmppc_mmu_hpte_cache_map() 67 hlist_add_head_rcu(&pte->list_pte, &vcpu3s->hpte_hash_pte[index]); in kvmppc_mmu_hpte_cache_map() 70 index = kvmppc_mmu_hash_pte_long(pte->pte.eaddr); in kvmppc_mmu_hpte_cache_map() 71 hlist_add_head_rcu(&pte->list_pte_long, in kvmppc_mmu_hpte_cache_map() 75 index = kvmppc_mmu_hash_vpte(pte->pte.vpage); in kvmppc_mmu_hpte_cache_map() 76 hlist_add_head_rcu(&pte->list_vpte, &vcpu3s->hpte_hash_vpte[index]); in kvmppc_mmu_hpte_cache_map() 79 index = kvmppc_mmu_hash_vpte_long(pte->pte.vpage); in kvmppc_mmu_hpte_cache_map() 80 hlist_add_head_rcu(&pte->list_vpte_long, in kvmppc_mmu_hpte_cache_map() [all …]
|
/Linux-v5.15/arch/powerpc/include/asm/nohash/ |
D | pgtable.h | 43 static inline int pte_write(pte_t pte) in pte_write() argument 45 return pte_val(pte) & _PAGE_RW; in pte_write() 48 static inline int pte_read(pte_t pte) { return 1; } in pte_read() argument 49 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() argument 50 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special() argument 51 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none() argument 52 static inline bool pte_hashpte(pte_t pte) { return false; } in pte_hashpte() argument 53 static inline bool pte_ci(pte_t pte) { return pte_val(pte) & _PAGE_NO_CACHE; } in pte_ci() argument 54 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() argument 62 static inline int pte_protnone(pte_t pte) in pte_protnone() argument [all …]
|
/Linux-v5.15/arch/microblaze/include/asm/ |
D | pgtable.h | 235 #define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0) argument 236 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument 259 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read() argument 260 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; } in pte_write() argument 261 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() argument 262 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() argument 263 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() argument 265 static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; } in pte_uncache() argument 266 static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; } in pte_cache() argument 268 static inline pte_t pte_rdprotect(pte_t pte) \ in pte_rdprotect() argument [all …]
|
/Linux-v5.15/arch/openrisc/include/asm/ |
D | pgtable.h | 232 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_READ; } in pte_read() argument 233 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write() argument 234 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() argument 235 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() argument 236 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() argument 238 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() argument 240 pte_val(pte) &= ~(_PAGE_WRITE); in pte_wrprotect() 241 return pte; in pte_wrprotect() 244 static inline pte_t pte_rdprotect(pte_t pte) in pte_rdprotect() argument 246 pte_val(pte) &= ~(_PAGE_READ); in pte_rdprotect() [all …]
|
/Linux-v5.15/arch/arm/include/asm/ |
D | pgtable.h | 52 #define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte) argument 181 #define pte_pfn(pte) ((pte_val(pte) & PHYS_MASK) >> PAGE_SHIFT) argument 184 #define pte_page(pte) pfn_to_page(pte_pfn(pte)) argument 189 #define pte_isset(pte, val) ((u32)(val) == (val) ? pte_val(pte) & (val) \ argument 190 : !!(pte_val(pte) & (val))) 191 #define pte_isclear(pte, val) (!(pte_val(pte) & (val))) argument 193 #define pte_none(pte) (!pte_val(pte)) argument 194 #define pte_present(pte) (pte_isset((pte), L_PTE_PRESENT)) argument 195 #define pte_valid(pte) (pte_isset((pte), L_PTE_VALID)) argument 196 #define pte_accessible(mm, pte) (mm_tlb_flush_pending(mm) ? pte_present(pte) : pte_valid(pte)) argument [all …]
|
/Linux-v5.15/arch/hexagon/include/asm/ |
D | pgtable.h | 160 #define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE) argument 167 extern void sync_icache_dcache(pte_t pte); 169 #define pte_present_exec_user(pte) \ argument 170 ((pte_val(pte) & (_PAGE_EXECUTE | _PAGE_USER)) == \ 247 static inline int pte_none(pte_t pte) in pte_none() argument 249 return pte_val(pte) == _NULL_PTE; in pte_none() 255 static inline int pte_present(pte_t pte) in pte_present() argument 257 return pte_val(pte) & _PAGE_PRESENT; in pte_present() 267 static inline pte_t pte_mkold(pte_t pte) in pte_mkold() argument 269 pte_val(pte) &= ~_PAGE_ACCESSED; in pte_mkold() [all …]
|
/Linux-v5.15/arch/arm64/include/asm/ |
D | pgtable.h | 70 #define __pte_to_phys(pte) \ argument 71 ((pte_val(pte) & PTE_ADDR_LOW) | ((pte_val(pte) & PTE_ADDR_HIGH) << 36)) 74 #define __pte_to_phys(pte) (pte_val(pte) & PTE_ADDR_MASK) argument 78 #define pte_pfn(pte) (__pte_to_phys(pte) >> PAGE_SHIFT) argument 82 #define pte_none(pte) (!pte_val(pte)) argument 84 #define pte_page(pte) (pfn_to_page(pte_pfn(pte))) argument 89 #define pte_present(pte) (!!(pte_val(pte) & (PTE_VALID | PTE_PROT_NONE))) argument 90 #define pte_young(pte) (!!(pte_val(pte) & PTE_AF)) argument 91 #define pte_special(pte) (!!(pte_val(pte) & PTE_SPECIAL)) argument 92 #define pte_write(pte) (!!(pte_val(pte) & PTE_WRITE)) argument [all …]
|
/Linux-v5.15/arch/powerpc/include/asm/book3s/32/ |
D | pgtable.h | 56 static inline bool pte_user(pte_t pte) in pte_user() argument 58 return pte_val(pte) & _PAGE_USER; in pte_user() 386 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) argument 390 static inline int pte_write(pte_t pte) { return !!(pte_val(pte) & _PAGE_RW);} in pte_write() argument 391 static inline int pte_read(pte_t pte) { return 1; } in pte_read() argument 392 static inline int pte_dirty(pte_t pte) { return !!(pte_val(pte) & _PAGE_DIRTY); } in pte_dirty() argument 393 static inline int pte_young(pte_t pte) { return !!(pte_val(pte) & _PAGE_ACCESSED); } in pte_young() argument 394 static inline int pte_special(pte_t pte) { return !!(pte_val(pte) & _PAGE_SPECIAL); } in pte_special() argument 395 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none() argument 396 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec() argument [all …]
|
/Linux-v5.15/arch/powerpc/mm/ |
D | pgtable.c | 49 static inline int pte_looks_normal(pte_t pte) in pte_looks_normal() argument 52 if (pte_present(pte) && !pte_special(pte)) { in pte_looks_normal() 53 if (pte_ci(pte)) in pte_looks_normal() 55 if (pte_user(pte)) in pte_looks_normal() 61 static struct page *maybe_pte_to_page(pte_t pte) in maybe_pte_to_page() argument 63 unsigned long pfn = pte_pfn(pte); in maybe_pte_to_page() 82 static pte_t set_pte_filter_hash(pte_t pte) in set_pte_filter_hash() argument 85 return pte; in set_pte_filter_hash() 87 pte = __pte(pte_val(pte) & ~_PAGE_HPTEFLAGS); in set_pte_filter_hash() 88 if (pte_looks_normal(pte) && !(cpu_has_feature(CPU_FTR_COHERENT_ICACHE) || in set_pte_filter_hash() [all …]
|
/Linux-v5.15/arch/nios2/include/asm/ |
D | pgtable.h | 103 static inline int pte_write(pte_t pte) \ in pte_write() argument 104 { return pte_val(pte) & _PAGE_WRITE; } in pte_write() 105 static inline int pte_dirty(pte_t pte) \ in pte_dirty() argument 106 { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() 107 static inline int pte_young(pte_t pte) \ in pte_young() argument 108 { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() 121 static inline int pte_none(pte_t pte) in pte_none() argument 123 return !(pte_val(pte) & ~(_PAGE_GLOBAL|0xf)); in pte_none() 126 static inline int pte_present(pte_t pte) \ in pte_present() argument 127 { return pte_val(pte) & _PAGE_PRESENT; } in pte_present() [all …]
|
/Linux-v5.15/arch/sparc/include/asm/ |
D | pgtable_64.h | 248 pte_t pte = pfn_pte(page_nr, pgprot); in pfn_pmd() local 250 return __pmd(pte_val(pte)); in pfn_pmd() 256 static inline unsigned long pte_pfn(pte_t pte) in pte_pfn() argument 269 : "r" (pte_val(pte)), in pte_pfn() 277 static inline pte_t pte_modify(pte_t pte, pgprot_t prot) in pte_modify() argument 332 return __pte((pte_val(pte) & mask) | (pgprot_val(prot) & ~mask)); in pte_modify() 338 pte_t pte = __pte(pmd_val(pmd)); in pmd_modify() local 340 pte = pte_modify(pte, newprot); in pmd_modify() 342 return __pmd(pte_val(pte)); in pmd_modify() 397 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge() argument [all …]
|
/Linux-v5.15/arch/csky/include/asm/ |
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 103 static inline void set_pte(pte_t *p, pte_t pte) in set_pte() argument 105 *p = pte; in set_pte() 160 static inline int pte_read(pte_t pte) in pte_read() argument 162 return pte.pte_low & _PAGE_READ; in pte_read() 165 static inline int pte_write(pte_t pte) in pte_write() argument 167 return (pte).pte_low & _PAGE_WRITE; in pte_write() 170 static inline int pte_dirty(pte_t pte) in pte_dirty() argument [all …]
|
/Linux-v5.15/arch/nds32/include/asm/ |
D | pgtable.h | 33 #define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte_val(pte)) argument 182 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument 185 #define pte_none(pte) !(pte_val(pte)) argument 187 #define pte_page(pte) (pfn_to_page(pte_pfn(pte))) argument 213 static inline void set_pte(pte_t * ptep, pte_t pte) in set_pte() argument 216 *ptep = pte; in set_pte() 238 #define pte_present(pte) (pte_val(pte) & _PAGE_V) argument 239 #define pte_write(pte) ((pte_val(pte) & _PAGE_M_MASK) == _PAGE_M_URW_KRW) argument 240 #define pte_read(pte) (((pte_val(pte) & _PAGE_M_MASK) == _PAGE_M_UR_KR) || \ argument 241 ((pte_val(pte) & _PAGE_M_MASK) == _PAGE_M_UR_KRW) || \ [all …]
|
/Linux-v5.15/arch/alpha/include/asm/ |
D | pgtable.h | 206 #define pte_pfn(pte) (pte_val(pte) >> 32) argument 208 #define pte_page(pte) pfn_to_page(pte_pfn(pte)) argument 211 pte_t pte; \ 213 pte_val(pte) = (page_to_pfn(page) << 32) | pgprot_val(pgprot); \ 214 pte; \ 218 { pte_t pte; pte_val(pte) = (PHYS_TWIDDLE(physpfn) << 32) | pgprot_val(pgprot); return pte; } in pfn_pte() local 220 extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument 221 { pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; } in pte_modify() 244 extern inline int pte_none(pte_t pte) { return !pte_val(pte); } in pte_none() argument 245 extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_VALID; } in pte_present() argument [all …]
|
/Linux-v5.15/arch/xtensa/include/asm/ |
D | pgtable.h | 249 # define pte_none(pte) (pte_val(pte) == (_PAGE_CA_INVALID | _PAGE_USER)) argument 251 # define pte_present(pte) ((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) argument 253 # define pte_present(pte) \ argument 254 (((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) \ 255 || ((pte_val(pte) & _PAGE_ATTRIB_MASK) == _PAGE_NONE)) 265 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITABLE; } in pte_write() argument 266 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() argument 267 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young() argument 269 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect() argument 270 { pte_val(pte) &= ~(_PAGE_WRITABLE | _PAGE_HW_WRITE); return pte; } in pte_wrprotect() [all …]
|
/Linux-v5.15/drivers/iommu/ |
D | io-pgtable-arm-v7s.c | 83 #define ARM_V7S_PTE_IS_VALID(pte) (((pte) & 0x3) != 0) argument 84 #define ARM_V7S_PTE_IS_TABLE(pte, lvl) \ argument 85 ((lvl) == 1 && (((pte) & 0x3) == ARM_V7S_PTE_TYPE_TABLE)) 172 static bool arm_v7s_pte_is_cont(arm_v7s_iopte pte, int lvl); 188 arm_v7s_iopte pte = paddr & ARM_V7S_LVL_MASK(lvl); in paddr_to_iopte() local 191 return pte; in paddr_to_iopte() 194 pte |= ARM_V7S_ATTR_MTK_PA_BIT32; in paddr_to_iopte() 196 pte |= ARM_V7S_ATTR_MTK_PA_BIT33; in paddr_to_iopte() 198 pte |= ARM_V7S_ATTR_MTK_PA_BIT34; in paddr_to_iopte() 199 return pte; in paddr_to_iopte() [all …]
|
/Linux-v5.15/drivers/iommu/intel/ |
D | pasid.c | 513 struct pasid_entry *pte; in intel_pasid_tear_down_entry() local 516 pte = intel_pasid_get_entry(dev, pasid); in intel_pasid_tear_down_entry() 517 if (WARN_ON(!pte)) in intel_pasid_tear_down_entry() 520 if (!pasid_pte_is_present(pte)) in intel_pasid_tear_down_entry() 523 did = pasid_get_domain_id(pte); in intel_pasid_tear_down_entry() 524 pgtt = pasid_pte_get_pgtt(pte); in intel_pasid_tear_down_entry() 529 clflush_cache_range(pte, sizeof(*pte)); in intel_pasid_tear_down_entry() 548 struct pasid_entry *pte, in pasid_flush_caches() argument 552 clflush_cache_range(pte, sizeof(*pte)); in pasid_flush_caches() 562 static inline int pasid_enable_wpe(struct pasid_entry *pte) in pasid_enable_wpe() argument [all …]
|
/Linux-v5.15/drivers/iommu/amd/ |
D | io_pgtable.c | 50 static u64 *first_pte_l7(u64 *pte, unsigned long *page_size, in first_pte_l7() argument 56 pg_size = PTE_PAGE_SIZE(*pte); in first_pte_l7() 59 fpte = (u64 *)(((unsigned long)pte) & pte_mask); in first_pte_l7() 183 u64 *pte; in increase_address_space() local 185 pte = (void *)get_zeroed_page(gfp); in increase_address_space() 186 if (!pte) in increase_address_space() 198 *pte = PM_LEVEL_PDE(domain->iop.mode, iommu_virt_to_phys(domain->iop.root)); in increase_address_space() 200 domain->iop.root = pte; in increase_address_space() 209 amd_iommu_domain_set_pgtable(domain, pte, domain->iop.mode); in increase_address_space() 211 pte = NULL; in increase_address_space() [all …]
|
/Linux-v5.15/arch/powerpc/include/asm/book3s/64/ |
D | pgtable.h | 347 #define __rpte_to_pte(r) ((r).pte) 361 #define pte_pagesize_index(mm, addr, pte) MMU_PAGE_4K argument 419 static inline int __pte_write(pte_t pte) in __pte_write() argument 421 return !!(pte_raw(pte) & cpu_to_be64(_PAGE_WRITE)); in __pte_write() 426 static inline bool pte_savedwrite(pte_t pte) in pte_savedwrite() argument 435 return !(pte_raw(pte) & cpu_to_be64(_PAGE_RWX | _PAGE_PRIVILEGED)); in pte_savedwrite() 439 static inline bool pte_savedwrite(pte_t pte) in pte_savedwrite() argument 445 static inline int pte_write(pte_t pte) in pte_write() argument 447 return __pte_write(pte) || pte_savedwrite(pte); in pte_write() 450 static inline int pte_read(pte_t pte) in pte_read() argument [all …]
|
/Linux-v5.15/include/trace/events/ |
D | thp.h | 13 TP_PROTO(unsigned long addr, unsigned long pte), 14 TP_ARGS(addr, pte), 17 __field(unsigned long, pte) 22 __entry->pte = pte; 26 __entry->addr, __entry->pte) 49 TP_PROTO(unsigned long addr, unsigned long pte, unsigned long clr, unsigned long set), 50 TP_ARGS(addr, pte, clr, set), 53 __field(unsigned long, pte) 60 __entry->pte = pte; 66 …r 0x%lx and pte = 0x%lx clr = 0x%lx, set = 0x%lx", __entry->addr, __entry->pte, __entry->clr, __en… [all …]
|