| /OK3568_Linux_fs/kernel/arch/um/include/asm/ |
| H A D | pgtable.h | 116 #define pte_present(x) pte_get_bits(x, (_PAGE_PRESENT | _PAGE_PROTNONE)) macro 167 return(pte_present(pte) && (pte_get_bits(pte, _PAGE_NEWPROT))); in pte_newprot() 234 if(pte_present(pte)) in pte_mkuptodate() 255 if(pte_present(*pteptr)) *pteptr = pte_mknewprot(*pteptr); in set_pte() 284 if (pte_present(pte)) \
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/nohash/ |
| H A D | pgtable.h | 64 return pte_present(pte) && !pte_user(pte); in pte_protnone() 73 static inline int pte_present(pte_t pte) in pte_present() function 106 if (!pte_present(pte) || !pte_user(pte) || !pte_read(pte)) in pte_access_permitted()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kvm/ |
| H A D | book3s_64_mmu_radix.c | 735 if (pte_present(*ptep)) { in kvmppc_create_pte() 785 if (ptep && pte_present(*ptep) && (!writing || pte_write(*ptep))) { in kvmppc_hv_handle_set_rc() 852 if (!pte_present(pte)) { in kvmppc_book3s_instantiate_page() 1011 if (ptep && pte_present(*ptep)) in kvm_unmap_radix() 1031 if (ptep && pte_present(*ptep) && pte_young(*ptep)) { in kvm_age_radix() 1058 if (ptep && pte_present(*ptep) && pte_young(*ptep)) in kvm_test_age_radix() 1086 if (pte_present(pte) && pte_dirty(pte)) { in kvm_radix_test_clear_dirty() 1098 if (!pte_present(*ptep) || !pte_dirty(*ptep)) { in kvm_radix_test_clear_dirty() 1162 if (ptep && pte_present(*ptep)) in kvmppc_radix_flush_memslot()
|
| /OK3568_Linux_fs/kernel/arch/s390/mm/ |
| H A D | hugetlbpage.c | 48 if (pte_present(pte)) { in __pte_to_rste() 163 if (likely(pte_present(pte))) in set_huge_pte_at() 166 } else if (likely(pte_present(pte))) in set_huge_pte_at()
|
| /OK3568_Linux_fs/kernel/arch/riscv/include/asm/ |
| H A D | pgtable.h | 205 static inline int pte_present(pte_t pte) in pte_present() function 227 return pte_present(pte) in pte_huge() 337 if (pte_present(pteval) && pte_exec(pteval)) in set_pte_at()
|
| /OK3568_Linux_fs/kernel/arch/mips/kvm/ |
| H A D | mmu.c | 164 if (!pte_present(pte[i])) in kvm_mips_flush_gpa_pte() 289 if (!pte_present(pte[i])) \ 519 if (!pte_present(old_pte) || !pte_young(old_pte)) in kvm_set_spte_handler() 523 return !pte_present(hva_pte) || in kvm_set_spte_handler() 600 if (!ptep || !pte_present(*ptep)) { in _kvm_mips_map_page_fast() 825 if (!pte_present(pte[i])) in kvm_mips_flush_gva_pte()
|
| /OK3568_Linux_fs/kernel/arch/um/kernel/skas/ |
| H A D | uaccess.c | 50 if ((pte == NULL) || !pte_present(*pte) || in maybe_map() 57 if (!pte_present(*pte)) in maybe_map()
|
| /OK3568_Linux_fs/kernel/arch/arm64/include/asm/ |
| H A D | pgtable.h | 97 #define pte_present(pte) (!!(pte_val(pte) & (PTE_VALID | PTE_PROT_NONE))) macro 136 (mm_tlb_flush_pending(mm) ? pte_present(pte) : pte_valid(pte)) 317 if (pte_present(pte) && pte_user_exec(pte) && !pte_special(pte)) in set_pte_at() 321 pte_present(pte) && pte_tagged(pte) && !pte_special(pte)) in set_pte_at() 407 return pte_present(pmd_pte(pmd)) || pmd_present_invalid(pmd); in pmd_present() 622 #define pud_present(pud) pte_present(pud_pte(pud))
|
| /OK3568_Linux_fs/kernel/arch/um/kernel/ |
| H A D | tlb.c | 250 if (pte_present(*pte)) { in update_pte_range() 443 if (!pte_present(*pte) || pte_newpage(*pte)) { in flush_tlb_kernel_range_common() 449 if (pte_present(*pte)) in flush_tlb_kernel_range_common() 516 if (pte_present(*pte)) { in flush_tlb_page()
|
| /OK3568_Linux_fs/kernel/mm/damon/ |
| H A D | vaddr.c | 394 if (!pte_present(*pte)) in damon_mkold_pmd_entry() 444 if (!pte_present(entry)) in damon_mkold_hugetlb_entry() 543 if (!pte_present(*pte)) in damon_young_pmd_entry() 572 if (!pte_present(entry)) in damon_young_hugetlb_entry()
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/ |
| H A D | pgtable.h | 142 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) macro 189 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) macro 235 if (!pte_present(pteval)) 238 if (pte_present(*ptep) && (pte_pfn(*ptep) == pte_pfn(pteval)))
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | page_vma_mapped.c | 46 } else if (!pte_present(*pvmw->pte)) in map_pte() 109 if (!pte_present(*pvmw->pte)) in check_pte()
|
| /OK3568_Linux_fs/kernel/arch/arm/include/asm/ |
| H A D | pgtable-3level.h | 164 #define pte_same(pte_a,pte_b) ((pte_present(pte_a) ? pte_val(pte_a) & ~PTE_EXT_NG \ 166 == (pte_present(pte_b) ? pte_val(pte_b) & ~PTE_EXT_NG \
|
| H A D | pgtable.h | 193 #define pte_present(pte) (pte_isset((pte), L_PTE_PRESENT)) macro 195 #define pte_accessible(mm, pte) (mm_tlb_flush_pending(mm) ? pte_present(pte) : pte_valid(pte))
|
| /OK3568_Linux_fs/kernel/arch/sparc/mm/ |
| H A D | hugetlbpage.c | 344 if (!pte_present(*ptep) && pte_present(entry)) in set_huge_pte_at() 382 if (pte_present(entry)) in huge_ptep_get_and_clear()
|
| /OK3568_Linux_fs/kernel/arch/xtensa/include/asm/ |
| H A D | pgtable.h | 252 # define pte_present(pte) ((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) macro 254 # define pte_present(pte) \ macro
|
| /OK3568_Linux_fs/kernel/fs/proc/ |
| H A D | task_mmu.c | 565 if (pte_present(*pte)) { in smaps_pte_entry() 766 if (pte_present(*pte)) { in smaps_hugetlb_range() 1150 if (pte_present(ptent)) { in clear_soft_dirty() 1243 if (!pte_present(ptent)) in clear_refs_pte_range() 1456 if (pte_present(pte)) { in pte_to_pagemap_entry() 1601 if (pte_present(pte)) { in pagemap_hugetlb_range() 1834 if (!pte_present(pte)) in can_gather_numa_stats() 1922 if (!pte_present(huge_pte)) in gather_hugetlb_stats()
|
| /OK3568_Linux_fs/kernel/arch/x86/mm/ |
| H A D | fault.c | 241 if (!pte_present(*pte_k)) in vmalloc_fault() 530 if (pte && pte_present(*pte) && !pte_exec(*pte)) in show_fault_oops() 533 if (pte && pte_present(*pte) && pte_exec(*pte) && in show_fault_oops() 1083 if (!pte_present(*pte)) in spurious_kernel_fault()
|
| /OK3568_Linux_fs/kernel/arch/s390/include/asm/ |
| H A D | pgtable.h | 762 static inline int pte_present(pte_t pte) in pte_present() function 795 return pte_present(pte) && !(pte_val(pte) & _PAGE_READ); in pte_protnone() 1083 if (mm_is_protected(mm) && pte_present(res)) in ptep_get_and_clear() 1100 if (mm_is_protected(vma->vm_mm) && pte_present(res)) in ptep_clear_flush() 1125 if (mm_is_protected(mm) && pte_present(res)) in ptep_get_and_clear_full() 1203 if (pte_present(entry)) in set_pte_at()
|
| /OK3568_Linux_fs/kernel/arch/parisc/include/asm/ |
| H A D | pgtable.h | 93 if (pte_present(pteval) && \ 312 #define pte_present(x) (pte_val(x) & _PAGE_PRESENT) macro
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/book3s/32/ |
| H A D | pgtable.h | 360 static inline int pte_present(pte_t pte) in pte_present() function 391 if (!pte_present(pte) || !pte_user(pte) || !pte_read(pte)) in pte_access_permitted()
|
| /OK3568_Linux_fs/kernel/arch/nds32/mm/ |
| H A D | proc.c | 25 if (pte_present(pte)) in va_kernel_present() 49 if (pte_present(pte)) in va_present()
|
| /OK3568_Linux_fs/kernel/arch/csky/mm/ |
| H A D | fault.c | 109 if (!pte_present(*pte_k)) in do_page_fault()
|
| /OK3568_Linux_fs/kernel/arch/ia64/include/asm/ |
| H A D | pgtable.h | 266 #define pte_present(pte) (pte_val(pte) & (_PAGE_P | _PAGE_PROTNONE)) macro 335 (!pte_present(*ptep) || in set_pte()
|
| /OK3568_Linux_fs/kernel/arch/openrisc/mm/ |
| H A D | fault.c | 349 if (!pte_present(*pte_k)) in do_page_fault()
|