Home
last modified time | relevance | path

Searched refs:_PAGE_USER (Results 1 – 17 of 17) sorted by relevance

/linux-2.4.37.9/include/asm-x86_64/
Dpgtable.h212 #define _PAGE_USER 0x004 macro
224 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
232 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
233 #define PAGE_SHARED_NOEXEC __pgprot(_PAGE_NX | _PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESS…
234 #define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
237 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
238 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
240 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
249 #define __PAGE_KERNEL_VSYSCALL (_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
254 (_PAGE_PRESENT | _PAGE_USER | _PAGE_DIRTY | _PAGE_ACCESSED)
[all …]
/linux-2.4.37.9/include/asm-sh/
Dpgtable.h129 #define _PAGE_USER 0x040 /* PR1-bit : user space access allowed */ macro
166 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
171 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_CACHABLE |_PAGE_ACCESSED…
172 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | _PAGE_ACCESSED | _PAGE_FLA…
173 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | _PAGE_ACCESSED | _PAGE…
210 #define pmd_bad(x) ((pmd_val(x) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE)
219 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read()
220 static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_exec()
226 static inline pte_t pte_rdprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); re… in pte_rdprotect()
227 static inline pte_t pte_exprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); re… in pte_exprotect()
[all …]
/linux-2.4.37.9/include/asm-i386/
Dpgtable.h189 #define _PAGE_USER 0x004 macro
199 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
204 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
205 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
206 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
273 #define pmd_bad(x) ((pmd_val(x) & (~PAGE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE)
282 static inline int pte_read(pte_t pte) { return (pte).pte_low & _PAGE_USER; } in pte_read()
283 static inline int pte_exec(pte_t pte) { return (pte).pte_low & _PAGE_USER; } in pte_exec()
288 static inline pte_t pte_rdprotect(pte_t pte) { (pte).pte_low &= ~_PAGE_USER; return pte; } in pte_rdprotect()
289 static inline pte_t pte_exprotect(pte_t pte) { (pte).pte_low &= ~_PAGE_USER; return pte; } in pte_exprotect()
[all …]
/linux-2.4.37.9/include/asm-ppc/
Dpgtable.h249 #define _PAGE_USER 0x010 /* matches one of the zone permission bits */ macro
279 #define _PAGE_USER 0x00000040 /* S: User page */ macro
315 #define _PAGE_USER 0x0800 /* One of the PP bits, the other is USER&~RW */ macro
335 #define _PAGE_USER 0x004 /* usermode access allowed */ macro
396 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
397 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
398 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
399 #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
400 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
401 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
[all …]
/linux-2.4.37.9/include/asm-ppc64/
Dpgtable.h92 #define _PAGE_USER 0x002UL /* matches one of the PP bits */ macro
119 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER)
120 #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER | _PAGE_EXEC)
121 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
122 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
123 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
124 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
245 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER;} in pte_read()
255 pte_val(pte) &= ~_PAGE_USER; return pte; } in pte_rdprotect()
266 pte_val(pte) |= _PAGE_USER; return pte; } in pte_mkread()
[all …]
/linux-2.4.37.9/include/asm-parisc/
Dpgtable.h152 #define _PAGE_USER (1 << xlate_pabit(_PAGE_USER_BIT)) macro
160 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
161 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_ACCESSED)
165 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_ACCESSED)
166 #define PAGE_WRITEONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITE | _PAGE_ACCESSED)
167 #define PAGE_EXECREAD __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_EXEC |_PAGE_ACCESS…
169 #define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_EXEC…
173 #define PAGE_GATEWAY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_GATEWAY| _PAGE…
/linux-2.4.37.9/include/asm-sh64/
Dpgtable.h308 #define _PAGE_USER 0x200 /* PR3-bit : user space access allowed */ macro
332 #define _PAGE_TABLE (_KERNPG_TABLE | _PAGE_USER)
338 _PAGE_CACHABLE | _PAGE_ACCESSED | _PAGE_USER | \
343 _PAGE_ACCESSED | _PAGE_USER | _PAGE_EXECUTE)
345 _PAGE_ACCESSED | _PAGE_USER)
354 #define __MMAP_COMMON (_PAGE_PRESENT | _PAGE_USER | _PAGE_CACHABLE | _PAGE_ACCESSED)
/linux-2.4.37.9/arch/ppc/mm/
Dppc_mmu.c123 if (flags & _PAGE_USER) in setbat()
140 ((flags & _PAGE_USER)? PP_RWRW: PP_RWXX): PP_RXRX; in setbat()
Dpgtable.c312 f |= _PAGE_USER; in mapin_ram()
Dhashtable.S81 ori r3,r3,_PAGE_USER|_PAGE_PRESENT /* test low addresses as user */
/linux-2.4.37.9/arch/x86_64/mm/
Dinit.c135 set_pgd(pgd, __pgd(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER)); in set_pte_phys()
144 set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER)); in set_pte_phys()
/linux-2.4.37.9/drivers/char/drm/
Dsavage_drv.c104 pgprot_val(flags) = _PAGE_PRESENT | _PAGE_RW | _PAGE_USER; in savage_alloc_continuous_mem()
Ddrm_proc.h438 pgprot & _PAGE_USER ? 'u' : 's', in DRM()
/linux-2.4.37.9/arch/ppc64/kernel/
Dhtab.c306 return (pte & _PAGE_USER) | in computeHptePP()
307 (((pte & _PAGE_USER) >> 1) & in computeHptePP()
473 (access & _PAGE_USER)) { in hash_page()
/linux-2.4.37.9/arch/sh64/mm/
Dfault.c71 PPROT(_PAGE_EXECUTE),PPROT(_PAGE_WRITE),PPROT(_PAGE_USER)); in print_prots()
/linux-2.4.37.9/arch/ppc/kernel/
Dhead.S550 li r1,_PAGE_USER|_PAGE_PRESENT /* low addresses tested as user */
625 li r1,_PAGE_USER|_PAGE_PRESENT /* low addresses tested as user */
698 li r1,_PAGE_RW|_PAGE_USER|_PAGE_PRESENT /* access flags */
/linux-2.4.37.9/drivers/char/drm-4.0/
Dproc.c399 pgprot & _PAGE_USER ? 'u' : 's', in _drm_vma_info()