/arch/arc/include/asm/ |
D | pgtable.h | 66 #define _PAGE_SPECIAL (1<<7) macro 78 #define _PAGE_SPECIAL (1<<6) macro 114 #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_SPECIAL) 306 #define pte_special(pte) (pte_val(pte) & _PAGE_SPECIAL) 320 PTE_BIT_FUNC(mkspecial, |= (_PAGE_SPECIAL));
|
/arch/powerpc/include/asm/nohash/32/ |
D | pte-fsl-booke.h | 32 #define _PAGE_SPECIAL 0x00800 /* S: Special page */ macro
|
D | pte-44x.h | 80 #define _PAGE_SPECIAL 0x00000020 /* S: Special page */ macro
|
D | pte-40x.h | 46 #define _PAGE_SPECIAL 0x020 /* software: Special page */ macro
|
D | pte-8xx.h | 35 #define _PAGE_SPECIAL 0x0008 /* SW entry, forced to 0 by the TLB miss */ macro
|
/arch/powerpc/include/asm/book3s/32/ |
D | hash.h | 30 #define _PAGE_SPECIAL 0x800 /* software: Special page */ macro
|
D | pgtable.h | 305 static inline int pte_special(pte_t pte) { return !!(pte_val(pte) & _PAGE_SPECIAL); } in pte_special() 364 return __pte(pte_val(pte) | _PAGE_SPECIAL); in pte_mkspecial()
|
/arch/sh/include/asm/ |
D | pgtable_64.h | 129 #define _PAGE_SPECIAL _PAGE_EXT(0x002) macro 174 _PAGE_SPECIAL) 263 static inline int pte_special(pte_t pte){ return pte_val(pte) & _PAGE_SPECIAL; } in pte_special() 272 static inline pte_t pte_mkspecial(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_SPECIAL)); … in pte_mkspecial()
|
D | pgtable_32.h | 53 #define _PAGE_SPECIAL 0x800 /* software: special page */ macro 171 _PAGE_DIRTY | _PAGE_SPECIAL) 343 #define pte_special(pte) ((pte).pte_low & _PAGE_SPECIAL) 374 PTE_BIT_FUNC(low, mkspecial, |= _PAGE_SPECIAL);
|
/arch/powerpc/include/asm/nohash/ |
D | pte-book3e.h | 62 #define _PAGE_SPECIAL _PAGE_SW0 macro
|
D | pgtable.h | 21 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special() 101 return __pte(pte_val(pte) | _PAGE_SPECIAL); in pte_mkspecial()
|
/arch/powerpc/mm/ |
D | pgtable.c | 48 if ((pte_val(pte) & (_PAGE_PRESENT | _PAGE_SPECIAL)) == _PAGE_PRESENT) { in pte_looks_normal() 57 (_PAGE_PRESENT | _PAGE_SPECIAL | _PAGE_NO_CACHE | _PAGE_USER)) == in pte_looks_normal()
|
D | dump_linuxpagetables.c | 229 .mask = _PAGE_SPECIAL, 230 .val = _PAGE_SPECIAL,
|
/arch/sparc/include/asm/ |
D | pgtable_64.h | 115 #define _PAGE_SPECIAL _AC(0x0200000000000000,UL) /* Special page */ macro 327 _PAGE_SPECIAL | _PAGE_PMD_HUGE | _PAGE_SZALL_4U), in pte_modify() 330 _PAGE_SPECIAL | _PAGE_PMD_HUGE | _PAGE_SZALL_4V), in pte_modify() 333 _PAGE_SPECIAL | _PAGE_PMD_HUGE | _PAGE_SZALL_4V)); in pte_modify() 573 pte_val(pte) |= _PAGE_SPECIAL; in pte_mkspecial() 671 return pte_val(pte) & _PAGE_SPECIAL; in pte_special()
|
/arch/powerpc/include/asm/ |
D | pte-common.h | 113 _PAGE_ACCESSED | _PAGE_SPECIAL)
|
/arch/powerpc/include/asm/book3s/64/ |
D | pgtable.h | 83 #define _PAGE_SPECIAL _RPAGE_SW2 /* software: special page */ macro 122 _PAGE_ACCESSED | _PAGE_SPECIAL | _PAGE_PTE | \ 485 return !!(pte_raw(pte) & cpu_to_be64(_PAGE_SPECIAL)); in pte_special() 605 return __pte(pte_val(pte) | _PAGE_SPECIAL); in pte_mkspecial() 615 return __pte(pte_val(pte) | _PAGE_SPECIAL|_PAGE_DEVMAP); in pte_mkdevmap()
|
/arch/sh/mm/ |
D | gup.c | 95 mask = result | _PAGE_SPECIAL; in gup_pte_range()
|
/arch/x86/include/asm/ |
D | pgtable_types.h | 55 #define _PAGE_SPECIAL (_AT(pteval_t, 1) << _PAGE_BIT_SPECIAL) macro 126 _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY | \
|
D | pgtable.h | 185 return pte_flags(pte) & _PAGE_SPECIAL; in pte_special() 351 return pte_set_flags(pte, _PAGE_SPECIAL); in pte_mkspecial() 356 return pte_set_flags(pte, _PAGE_SPECIAL|_PAGE_DEVMAP); in pte_mkdevmap()
|
/arch/sparc/mm/ |
D | gup.c | 36 mask = result | _PAGE_SPECIAL; in gup_pte_range()
|
/arch/s390/include/asm/ |
D | pgtable.h | 172 #define _PAGE_SPECIAL 0x040 /* SW associated with special page */ macro 183 #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_DIRTY | \ 755 return (pte_val(pte) & _PAGE_SPECIAL); in pte_special() 941 pte_val(pte) |= _PAGE_SPECIAL; in pte_mkspecial()
|
/arch/s390/mm/ |
D | gup.c | 28 mask = (write ? _PAGE_PROTECT : 0) | _PAGE_INVALID | _PAGE_SPECIAL; in gup_pte_range()
|