Searched defs:_PAGE_RW (Results 1 - 13 of 13) sorted by relevance

/arch/powerpc/include/asm/
H A Dpte-40x.h47 #define _PAGE_RW 0x040 /* software: Writes permitted */ macro
H A Dpte-44x.h79 #define _PAGE_RW 0x00000002 /* S: Write permission */ macro
H A Dpte-8xx.h49 #define _PAGE_RW 0x0400 /* lsb PP bits, inverted in HW */ macro
64 #define _PAGE_KERNEL_RW (_PAGE_DIRTY | _PAGE_RW | _PAGE_HWWRITE)
H A Dpte-fsl-booke.h24 #define _PAGE_RW 0x00004 /* S: Write permission (SW) */ macro
H A Dpte-hash32.h29 #define _PAGE_RW 0x400 /* software: user write access allowed */ macro
H A Dpte-hash64.h27 #define _PAGE_RW 0x0200 /* software: user write access allowed */ macro
37 #define _PAGE_KERNEL_RW (_PAGE_RW | _PAGE_DIRTY) /* user access blocked by key */
H A Dpte-book3e.h51 #define _PAGE_RW (_PAGE_BAP_SW | _PAGE_BAP_UW) /* User write permission */ macro
/arch/sh/include/asm/
H A Dpgtable_32.h48 #define _PAGE_RW 0x020 /* PR0-bit : write access allowed */ macro
58 #define _PAGE_PR_MASK (_PAGE_RW | _PAGE_USER)
245 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
259 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_CACHABLE | \
264 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
273 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | \
353 #define pte_write(pte) ((pte).pte_low & _PAGE_RW)
369 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
370 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
/arch/um/include/asm/
H A Dpgtable.h16 #define _PAGE_RW 0x020 macro
60 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
61 #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
64 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
66 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
69 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
150 return((pte_get_bits(pte, _PAGE_RW)) &&
213 pte_clear_bits(pte, _PAGE_RW);
237 pte_set_bits(pte, _PAGE_RW);
/arch/avr32/include/asm/
H A Dpgtable.h95 #define _PAGE_RW (1 << _PAGE_BIT_RW) macro
137 #define _PAGE_FLAGS_WRITE (_PAGE_FLAGS_READ | _PAGE_RW | _PAGE_DIRTY)
149 #define _PAGE_P(x) _PAGE_NORMAL((x) & ~(_PAGE_RW | _PAGE_DIRTY))
198 return pte_val(pte) & _PAGE_RW;
224 set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_RW));
239 set_pte(&pte, __pte(pte_val(pte) | _PAGE_RW));
/arch/microblaze/include/asm/
H A Dpgtable.h215 #define _PAGE_RW 0x040 /* software: Writes permitted */ macro
247 #define _PAGE_WRENABLE (_PAGE_RW | _PAGE_DIRTY | _PAGE_HWWRITE)
257 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
259 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
336 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
348 { pte_val(pte) &= ~(_PAGE_RW | _PAGE_HWWRITE); return pte; }
361 { pte_val(pte) |= _PAGE_RW; return pte; }
460 pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), 0);
/arch/parisc/include/asm/
H A Dpgtable.h179 #define _PAGE_RW (_PAGE_READ | _PAGE_WRITE) macro
/arch/x86/include/asm/
H A Dpgtable_types.h45 #define _PAGE_RW (_AT(pteval_t, 1) << _PAGE_BIT_RW) macro
120 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
122 #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \
138 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
141 #define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | \
154 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_GLOBAL)
157 #define __PAGE_KERNEL_RO (__PAGE_KERNEL & ~_PAGE_RW)
158 #define __PAGE_KERNEL_RX (__PAGE_KERNEL_EXEC & ~_PAGE_RW)

Completed in 103 milliseconds