Home
last modified time | relevance | path

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

/arch/frv/include/asm/
Dpgtable.h291 #define _PAGE_WP DAMPRx_WP macro
309 #define PAGE_COPY __pgprot(__PGPROT_BASE | _PAGE_WP)
310 #define PAGE_READONLY __pgprot(__PGPROT_BASE | _PAGE_WP)
314 #define __PAGE_KERNEL_RO (__PGPROT_BASE | _PAGE_SUPER | _PAGE_DIRTY | _PAGE_WP)
378 static inline int pte_write(pte_t pte) { return !((pte).pte & _PAGE_WP); } in pte_write()
383 static inline pte_t pte_wrprotect(pte_t pte) { (pte).pte |= _PAGE_WP; return pte; } in pte_wrprotect()
386 static inline pte_t pte_mkwrite(pte_t pte) { (pte).pte &= ~_PAGE_WP; return pte; } in pte_mkwrite()