Home
last modified time | relevance | path

Searched refs:_PAGE_SPECIAL (Results 1 – 22 of 22) sorted by relevance

/arch/arc/include/asm/
Dpgtable.h66 #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/
Dpte-fsl-booke.h32 #define _PAGE_SPECIAL 0x00800 /* S: Special page */ macro
Dpte-44x.h80 #define _PAGE_SPECIAL 0x00000020 /* S: Special page */ macro
Dpte-40x.h46 #define _PAGE_SPECIAL 0x020 /* software: Special page */ macro
Dpte-8xx.h35 #define _PAGE_SPECIAL 0x0008 /* SW entry, forced to 0 by the TLB miss */ macro
/arch/powerpc/include/asm/book3s/32/
Dhash.h30 #define _PAGE_SPECIAL 0x800 /* software: Special page */ macro
Dpgtable.h305 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/
Dpgtable_64.h129 #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()
Dpgtable_32.h53 #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/
Dpte-book3e.h62 #define _PAGE_SPECIAL _PAGE_SW0 macro
Dpgtable.h21 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/
Dpgtable.c48 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()
Ddump_linuxpagetables.c229 .mask = _PAGE_SPECIAL,
230 .val = _PAGE_SPECIAL,
/arch/sparc/include/asm/
Dpgtable_64.h115 #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/
Dpte-common.h113 _PAGE_ACCESSED | _PAGE_SPECIAL)
/arch/powerpc/include/asm/book3s/64/
Dpgtable.h83 #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/
Dgup.c95 mask = result | _PAGE_SPECIAL; in gup_pte_range()
/arch/x86/include/asm/
Dpgtable_types.h55 #define _PAGE_SPECIAL (_AT(pteval_t, 1) << _PAGE_BIT_SPECIAL) macro
126 _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY | \
Dpgtable.h185 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/
Dgup.c36 mask = result | _PAGE_SPECIAL; in gup_pte_range()
/arch/s390/include/asm/
Dpgtable.h172 #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/
Dgup.c28 mask = (write ? _PAGE_PROTECT : 0) | _PAGE_INVALID | _PAGE_SPECIAL; in gup_pte_range()