pte_low 59 arch/csky/include/asm/page.h typedef struct { unsigned long pte_low; } pte_t; pte_low 60 arch/csky/include/asm/page.h #define pte_val(x) ((x).pte_low) pte_low 40 arch/csky/include/asm/pgalloc.h (pte + i)->pte_low = _PAGE_GLOBAL; pte_low 35 arch/csky/include/asm/pgtable.h pr_err("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte_low) pte_low 51 arch/csky/include/asm/pgtable.h #define pte_pfn(x) ((unsigned long)((x).pte_low >> PAGE_SHIFT)) pte_low 175 arch/csky/include/asm/pgtable.h return pte.pte_low & _PAGE_READ; pte_low 180 arch/csky/include/asm/pgtable.h return (pte).pte_low & _PAGE_WRITE; pte_low 185 arch/csky/include/asm/pgtable.h return (pte).pte_low & _PAGE_MODIFIED; pte_low 190 arch/csky/include/asm/pgtable.h return (pte).pte_low & _PAGE_ACCESSED; pte_low 124 arch/mips/include/asm/page.h typedef struct { unsigned long pte_low, pte_high; } pte_t; pte_low 125 arch/mips/include/asm/page.h #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32)) pte_low 158 arch/mips/include/asm/pgtable-32.h #define pte_pfn(x) (((unsigned long)((x).pte_high >> _PFN_SHIFT)) | (unsigned long)((x).pte_low << _PAGE_PRESENT_SHIFT)) pte_low 164 arch/mips/include/asm/pgtable-32.h pte.pte_low = (pfn >> _PAGE_PRESENT_SHIFT) | pte_low 180 arch/mips/include/asm/pgtable-32.h pte.pte_low = pgprot_val(prot); pte_low 141 arch/mips/include/asm/pgtable.h # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) pte_low 144 arch/mips/include/asm/pgtable.h #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) pte_low 145 arch/mips/include/asm/pgtable.h #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) pte_low 151 arch/mips/include/asm/pgtable.h ptep->pte_low = pte.pte_low; pte_low 156 arch/mips/include/asm/pgtable.h if (pte.pte_low & _PAGE_GLOBAL) { pte_low 165 arch/mips/include/asm/pgtable.h buddy->pte_low |= _PAGE_GLOBAL; pte_low 181 arch/mips/include/asm/pgtable.h if (ptep_buddy(ptep)->pte_low & _PAGE_GLOBAL) pte_low 182 arch/mips/include/asm/pgtable.h null.pte_low = null.pte_high = _PAGE_GLOBAL; pte_low 277 arch/mips/include/asm/pgtable.h static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; } pte_low 278 arch/mips/include/asm/pgtable.h static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; } pte_low 279 arch/mips/include/asm/pgtable.h static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; } pte_low 280 arch/mips/include/asm/pgtable.h static inline int pte_special(pte_t pte) { return pte.pte_low & _PAGE_SPECIAL; } pte_low 284 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_WRITE; pte_low 286 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_SILENT_WRITE; pte_low 293 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_MODIFIED; pte_low 295 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_SILENT_WRITE; pte_low 302 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_ACCESSED; pte_low 304 arch/mips/include/asm/pgtable.h pte.pte_low &= ~_PAGE_SILENT_READ; pte_low 311 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_WRITE; pte_low 312 arch/mips/include/asm/pgtable.h if (pte.pte_low & _PAGE_MODIFIED) { pte_low 314 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_SILENT_WRITE; pte_low 322 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_MODIFIED; pte_low 323 arch/mips/include/asm/pgtable.h if (pte.pte_low & _PAGE_WRITE) { pte_low 325 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_SILENT_WRITE; pte_low 333 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_ACCESSED; pte_low 334 arch/mips/include/asm/pgtable.h if (!(pte.pte_low & _PAGE_NO_READ)) { pte_low 336 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_SILENT_READ; pte_low 344 arch/mips/include/asm/pgtable.h pte.pte_low |= _PAGE_SPECIAL; pte_low 450 arch/mips/include/asm/pgtable.h pte.pte_low &= (_PAGE_MODIFIED | _PAGE_ACCESSED | _PFNX_MASK); pte_low 452 arch/mips/include/asm/pgtable.h pte.pte_low |= pgprot_val(newprot) & ~_PFNX_MASK; pte_low 459 arch/mips/include/asm/pgtable.h pte.pte_low &= _PAGE_CHG_MASK; pte_low 461 arch/mips/include/asm/pgtable.h pte.pte_low |= pgprot_val(newprot); pte_low 120 arch/mips/mm/init.c entrylo = (pte.pte_low & _PFNX_MASK); pte_low 352 arch/mips/mm/tlb-r4k.c writex_c0_entrylo0(ptep->pte_low & _PFNX_MASK); pte_low 356 arch/mips/mm/tlb-r4k.c writex_c0_entrylo1(ptep->pte_low & _PFNX_MASK); pte_low 78 arch/sh/include/asm/page.h typedef struct { unsigned long pte_low, pte_high; } pte_t; pte_low 82 arch/sh/include/asm/page.h ((x).pte_low | ((unsigned long long)(x).pte_high << 32)) pte_low 86 arch/sh/include/asm/page.h typedef struct { unsigned long pte_low; } pte_t; pte_low 89 arch/sh/include/asm/page.h #define pte_val(x) ((x).pte_low) pte_low 92 arch/sh/include/asm/page.h typedef struct { unsigned long long pte_low; } pte_t; pte_low 95 arch/sh/include/asm/page.h #define pte_val(x) ((x).pte_low) pte_low 124 arch/sh/include/asm/pgtable.h #define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT))) pte_low 304 arch/sh/include/asm/pgtable_32.h ptep->pte_low = pte.pte_low; pte_low 324 arch/sh/include/asm/pgtable_32.h #define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE)) pte_low 340 arch/sh/include/asm/pgtable_32.h #define pte_not_present(pte) (!((pte).pte_low & _PAGE_PRESENT)) pte_low 341 arch/sh/include/asm/pgtable_32.h #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY) pte_low 342 arch/sh/include/asm/pgtable_32.h #define pte_young(pte) ((pte).pte_low & _PAGE_ACCESSED) pte_low 343 arch/sh/include/asm/pgtable_32.h #define pte_special(pte) ((pte).pte_low & _PAGE_SPECIAL) pte_low 349 arch/sh/include/asm/pgtable_32.h #define pte_write(pte) ((pte).pte_low & _PAGE_RW) pte_low 394 arch/sh/include/asm/pgtable_32.h pte.pte_low &= _PAGE_CHG_MASK; pte_low 395 arch/sh/include/asm/pgtable_32.h pte.pte_low |= pgprot_val(newprot); pte_low 430 arch/sh/include/asm/pgtable_32.h &(e), (e).pte_high, (e).pte_low) pte_low 34 arch/sh/include/asm/pgtable_64.h unsigned long long x = ((unsigned long long) pteval.pte_low); pte_low 37 arch/sh/mm/tlb-pteaex.c pteval = pte.pte_low; pte_low 32 arch/sh/mm/tlb-sh4.c pteval = pte.pte_low; pte_low 195 arch/sh/mm/tlb-sh5.c ptel = pte.pte_low; pte_low 6 arch/x86/include/asm/pgtable-2level.h pr_err("%s:%d: bad pte %08lx\n", __FILE__, __LINE__, (e).pte_low) pte_low 52 arch/x86/include/asm/pgtable-2level.h return __pte(xchg(&xp->pte_low, 0)); pte_low 95 arch/x86/include/asm/pgtable-2level.h #define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).pte_low }) pte_low 17 arch/x86/include/asm/pgtable-2level_types.h pteval_t pte_low; pte_low 16 arch/x86/include/asm/pgtable-3level.h __FILE__, __LINE__, &(e), (e).pte_high, (e).pte_low) pte_low 34 arch/x86/include/asm/pgtable-3level.h ptep->pte_low = pte.pte_low; pte_low 117 arch/x86/include/asm/pgtable-3level.h ptep->pte_low = 0; pte_low 17 arch/x86/include/asm/pgtable-3level_types.h unsigned long pte_low, pte_high; pte_low 1782 mm/gup.c pte.pte_low = ptep->pte_low; pte_low 1786 mm/gup.c } while (unlikely(pte.pte_low != ptep->pte_low));