Searched refs:pte_low (Results 1 - 18 of 18) sorted by relevance

/linux-master/arch/x86/include/asm/
H A Dpgtable-2level_types.h17 pteval_t pte_low; member in union:__anon95
H A Dpgtable-3level_types.h17 unsigned long pte_low, pte_high; member in struct:__anon37::__anon38
H A Dpgtable-2level.h6 pr_err("%s:%d: bad pte %08lx\n", __FILE__, __LINE__, (e).pte_low)
52 return __pte(xchg(&xp->pte_low, 0));
108 #define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).pte_low })
H A Dpgtable-3level.h14 __FILE__, __LINE__, &(e), (e).pte_high, (e).pte_low)
40 WRITE_ONCE(ptep->pte_low, pte.pte_low);
69 WRITE_ONCE(ptep->pte_low, 0);
/linux-master/arch/mips/include/asm/
H A Dpgtable.h113 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL))
116 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT)
117 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC)
123 ptep->pte_low = pte.pte_low;
128 if (pte.pte_low & _PAGE_GLOBAL) {
137 buddy->pte_low |= _PAGE_GLOBAL;
153 if (ptep_buddy(ptep)->pte_low & _PAGE_GLOBAL)
154 null.pte_low = null.pte_high = _PAGE_GLOBAL;
264 return pte.pte_low
[all...]
H A Dpage.h110 typedef struct { unsigned long pte_low, pte_high; } pte_t; member in struct:__anon25
111 #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
H A Dpgtable-32.h156 #define pte_pfn(x) (((unsigned long)((x).pte_high >> PFN_PTE_SHIFT)) | (unsigned long)((x).pte_low << _PAGE_PRESENT_SHIFT))
162 pte.pte_low = (pfn >> _PAGE_PRESENT_SHIFT) |
179 pte.pte_low = pgprot_val(prot);
/linux-master/arch/sh/include/asm/
H A Dpgtable_32.h304 ptep->pte_low = pte.pte_low;
323 #define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE))
339 #define pte_not_present(pte) (!((pte).pte_low & _PAGE_PRESENT))
340 #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY)
341 #define pte_young(pte) ((pte).pte_low & _PAGE_ACCESSED)
342 #define pte_special(pte) ((pte).pte_low & _PAGE_SPECIAL)
348 #define pte_write(pte) ((pte).pte_low & _PAGE_RW)
393 pte.pte_low &= _PAGE_CHG_MASK;
394 pte.pte_low |
[all...]
H A Dpage.h65 typedef struct { unsigned long pte_low, pte_high; } pte_t; member in struct:__anon123
69 ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
73 typedef struct { unsigned long pte_low; } pte_t; member in struct:__anon126
76 #define pte_val(x) ((x).pte_low)
H A Dpgtable.h95 #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
/linux-master/arch/csky/include/asm/
H A Dpage.h55 typedef struct { unsigned long pte_low; } pte_t; member in struct:__anon7
56 #define pte_val(x) ((x).pte_low)
H A Dpgtable.h27 pr_err("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte_low)
38 #define pte_pfn(x) ((unsigned long)((x).pte_low >> PAGE_SHIFT))
143 return pte.pte_low & _PAGE_READ;
148 return (pte).pte_low & _PAGE_WRITE;
153 return (pte).pte_low & _PAGE_MODIFIED;
158 return (pte).pte_low & _PAGE_ACCESSED;
H A Dpgalloc.h37 (pte + i)->pte_low = _PAGE_GLOBAL;
/linux-master/arch/sh/mm/
H A Dtlb-pteaex.c37 pteval = pte.pte_low;
H A Dtlb-sh4.c32 pteval = pte.pte_low;
/linux-master/arch/mips/mm/
H A Dtlb-r4k.c358 writex_c0_entrylo0(ptep->pte_low & _PFNX_MASK);
362 writex_c0_entrylo1(ptep->pte_low & _PFNX_MASK);
H A Dinit.c119 entrylo = (pte.pte_low & _PFNX_MASK);
/linux-master/include/linux/
H A Dpgtable.h481 * ptep->pte_low = l;
485 * ptep->pte_low = 0;
489 * We must ensure here that the load of pte_low sees 'l' IFF pte_high sees 'h'.
490 * We load pte_high *after* loading pte_low, which ensures we don't see an older
491 * value of pte_high. *Then* we recheck pte_low, which ensures that we haven't
493 * pte_low and pte_high, but we are guaranteed that pte_low will not have the
502 pte.pte_low = ptep->pte_low;
506 } while (unlikely(pte.pte_low !
[all...]

Completed in 269 milliseconds