Symbol: _PAGE_KERNEL_RW
arch/powerpc/include/asm/book3s/32/pgtable.h
90
#define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
arch/powerpc/include/asm/book3s/32/pgtable.h
91
#define PAGE_KERNEL_NC __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE)
arch/powerpc/include/asm/book3s/32/pgtable.h
92
#define PAGE_KERNEL_NCG __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE | _PAGE_GUARDED)
arch/powerpc/include/asm/book3s/64/pgtable.h
139
#define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
arch/powerpc/include/asm/book3s/64/pgtable.h
140
#define PAGE_KERNEL_NC __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_TOLERANT)
arch/powerpc/include/asm/book3s/64/pgtable.h
141
#define PAGE_KERNEL_NCG __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NON_IDEMPOTENT)
arch/powerpc/include/asm/nohash/pgtable.h
23
#define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
arch/powerpc/include/asm/nohash/pgtable.h
24
#define PAGE_KERNEL_NC __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE)
arch/powerpc/include/asm/nohash/pgtable.h
25
#define PAGE_KERNEL_NCG __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE | _PAGE_GUARDED)
arch/powerpc/mm/nohash/book3e_pgtable.c
29
_PAGE_KERNEL_RW;
arch/powerpc/mm/pageattr.c
40
pte_update_delta(ptep, addr, _PAGE_KERNEL_RW & ~_PAGE_DIRTY, _PAGE_KERNEL_RO);
arch/powerpc/mm/pageattr.c
44
pte_update_delta(ptep, addr, _PAGE_KERNEL_RW & ~_PAGE_DIRTY, _PAGE_KERNEL_ROX);
arch/powerpc/mm/pageattr.c
47
pte_update_delta(ptep, addr, _PAGE_KERNEL_RO, _PAGE_KERNEL_RW);