Searched refs:pte_present (Results 26 - 50 of 109) sorted by relevance

12345

/linux-master/arch/csky/mm/
H A Dfault.c163 if (!pte_present(*pte_k)) {
/linux-master/arch/m68k/include/asm/
H A Dmmu_context.h142 if (!pte || pte_none(*pte) || !pte_present(*pte))
H A Dmotorola_pgtable.h112 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) macro
149 * The following only work if pte_present() is true.
178 * are !pte_none() && !pte_present().
H A Dmcf_pgtable.h126 static inline int pte_present(pte_t pte) function
154 * The following only work if pte_present() is true.
260 * are !pte_none() && !pte_present().
H A Dsun3_pgtable.h102 static inline int pte_present (pte_t pte) { return pte_val (pte) & SUN3_PAGE_VALID; } function
136 * The following only work if pte_present() is true.
161 * are !pte_none() && !pte_present().
/linux-master/mm/
H A Dmincore.c128 else if (pte_present(pte))
H A Dpage_table_check.c197 if (pte_present(pte) && pte_uffd_wp(pte))
H A Dhmm.c218 if (pte_none(pte) || !pte_present(pte) || pte_protnone(pte))
243 if (!pte_present(pte)) {
H A Dmlock.c323 if (!pte_present(entry))
397 if (!pte_present(ptent))
/linux-master/arch/arm/mm/
H A Dfault-armv.c45 ret = pte_present(entry);
/linux-master/arch/hexagon/include/asm/
H A Dpgtable.h234 * pte_present - check if page is present
236 static inline int pte_present(pte_t pte) function
359 * are !pte_none() && !pte_present().
/linux-master/arch/csky/include/asm/
H A Dpgtable.h37 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) macro
138 * The following only work if pte_present() is true.
/linux-master/arch/xtensa/mm/
H A Dfault.c70 if (!pte_present(*pte_k))
H A Dtlb.c257 if (pte == 0 || !pte_present(__pte(pte))) {
/linux-master/arch/m68k/mm/
H A Dmcfmmu.c125 if (!pte || pte_none(*pte) || !pte_present(*pte))
/linux-master/arch/powerpc/mm/nohash/
H A D8xx.c93 if (new && WARN_ON(pte_present(*ptep) && pgprot_val(prot)))
/linux-master/arch/mips/mm/
H A Dfault.c316 if (!pte_present(*pte_k))
/linux-master/arch/nios2/include/asm/
H A Dpgtable.h110 static inline int pte_present(pte_t pte) \ function
114 * The following only work if pte_present() is true.
248 * are !pte_none() && !pte_present().
/linux-master/arch/riscv/include/asm/
H A Dpgtable.h348 static inline int pte_present(pte_t pte) function
375 return pte_present(pte) && (pte_val(pte) & _PAGE_LEAF);
523 if (pte_present(pteval) && pte_exec(pteval))
741 return pte_present(pte) && pte_user(pte);
809 * are !pte_none() && !pte_present().
/linux-master/arch/riscv/mm/
H A Dfault.c178 if (!pte_present(ptep_get(pte_k))) {
/linux-master/arch/arm/lib/
H A Duaccess_with_memcpy.c80 if (unlikely(!pte_present(*pte) || !pte_young(*pte) ||
/linux-master/arch/x86/mm/
H A Dfault.c260 if (!pte_present(*pte_k))
527 if (pte && pte_present(*pte) && (!pte_exec(*pte) || nx))
530 if (pte && pte_present(*pte) && pte_exec(*pte) && !nx &&
1032 if (!pte_present(*pte))
/linux-master/arch/s390/include/asm/
H A Dpgtable.h203 * handle_pte_fault uses pte_present and pte_none to find out the pte type
236 * pte_present is true for the bit pattern .xx.xxxxxx.1, (pte & 0x001) == 0x001
803 static inline int pte_present(pte_t pte)
836 return pte_present(pte) && !(pte_val(pte) & _PAGE_READ);
896 * pte_present() is true. Undefined behaviour if not..
997 * pte_present() is true. Undefined behaviour if not..
1169 if (mm_is_protected(mm) && pte_present(res))
1187 if (mm_is_protected(vma->vm_mm) && pte_present(res))
1213 if (!mm_is_protected(mm) || !pte_present(res))
1346 if (pte_present(entr
801 static inline int pte_present(pte_t pte) function
[all...]
/linux-master/arch/microblaze/kernel/
H A Dsignal.c197 if (ptep && pte_present(*ptep)) {
/linux-master/arch/sh/mm/
H A Dfault.c199 if (!pte_present(*pte_k))

Completed in 314 milliseconds

12345