Searched refs:pte_none (Results 1 - 25 of 89) sorted by relevance

1234

/linux-master/arch/parisc/mm/
H A Dfixmap.c32 if (WARN_ON(pte_none(*pte)))
/linux-master/arch/sh/mm/
H A Dtlbex_32.c57 if (unlikely(pte_none(entry) || pte_not_present(entry)))
H A Dkmap.c45 BUG_ON(!pte_none(*(kmap_coherent_pte - idx)));
/linux-master/arch/loongarch/include/asm/
H A Dkfence.h55 if (WARN_ON(!pte) || pte_none(*pte))
/linux-master/arch/x86/mm/
H A Dpgtable_32.c56 if (!pte_none(pteval))
H A Dpti.c283 if (!pte || WARN_ON(level != PG_LEVEL_4K) || pte_none(*pte))
383 if (pte_none(*pte)) {
H A Dmem_encrypt_amd.c267 if (!kpte || pte_none(*kpte)) {
384 if (!kpte || pte_none(*kpte)) {
/linux-master/arch/s390/include/asm/
H A Dhugetlb.h89 return pte_none(pte);
/linux-master/include/asm-generic/
H A Dhugetlb.h104 return pte_none(pte);
/linux-master/arch/arm64/kernel/pi/
H A Dmap_range.c58 if (pte_none(*tbl)) {
/linux-master/mm/kasan/
H A Dshadow.c210 return !pte_none(ptep_get(pte));
301 if (likely(!pte_none(ptep_get(ptep))))
312 if (likely(pte_none(ptep_get(ptep)))) {
406 if (likely(!pte_none(ptep_get(ptep)))) {
/linux-master/arch/arm/mm/
H A Dkasan_init.c56 if (!pte_none(READ_ONCE(*ptep)))
68 } else if (pte_none(READ_ONCE(*ptep))) {
/linux-master/arch/nios2/mm/
H A Dioremap.c39 if (!pte_none(*pte)) {
/linux-master/arch/mips/include/asm/
H A Dpgtable.h111 # define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL)) macro
113 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) macro
135 if (pte_none(*buddy)) {
162 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) macro
/linux-master/arch/arc/include/asm/
H A Dpgtable-levels.h173 #define pte_none(x) (!pte_val(x)) macro
/linux-master/mm/
H A Dhighmem.c208 BUG_ON(pte_none(ptent));
553 BUG_ON(!pte_none(ptep_get(kmap_pte)));
651 if (WARN_ON_ONCE(pte_none(pteval)))
688 if (WARN_ON_ONCE(pte_none(pteval)))
/linux-master/include/linux/
H A Dswapops.h126 return !pte_none(pte) && !pte_present(pte);
470 * This is a special version to check pte_none() just to cover the case when
484 return pte_none(pte) || is_pte_marker(pte);
/linux-master/arch/s390/mm/
H A Dvmem.c177 if (pte_none(*pte))
182 } else if (pte_none(*pte)) {
212 if (!pte_none(*pte))
/linux-master/arch/parisc/kernel/
H A Dpci-dma.c90 if (!pte_none(*pte))
183 if (pte_none(page) || pte_present(page))
/linux-master/arch/sparc/mm/
H A Dhugetlbpage.c355 orig_shift = pte_none(orig) ? PAGE_SHIFT : huge_tte_to_shift(orig);
392 orig_shift = pte_none(entry) ? PAGE_SHIFT : huge_tte_to_shift(entry);
/linux-master/arch/m68k/include/asm/
H A Dmmu_context.h142 if (!pte || pte_none(*pte) || !pte_present(*pte))
H A Dmotorola_pgtable.h111 #define pte_none(pte) (!pte_val(pte)) macro
178 * are !pte_none() && !pte_present().
H A Dmcf_pgtable.h121 static inline int pte_none(pte_t pte) function
260 * are !pte_none() && !pte_present().
H A Dsun3_pgtable.h101 static inline int pte_none (pte_t pte) { return !pte_val (pte); } function
161 * are !pte_none() && !pte_present().
/linux-master/arch/hexagon/include/asm/
H A Dpgtable.h225 * pte_none - check if pte is mapped
228 static inline int pte_none(pte_t pte) function
359 * are !pte_none() && !pte_present().

Completed in 205 milliseconds

1234