Symbol: _CACHE_MASK
arch/csky/include/asm/io.h
39
__pgprot((_PAGE_IOREMAP & ~_CACHE_MASK) | _CACHE_UNCACHED))
arch/csky/include/asm/pgtable.h
237
prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED | _PAGE_SO;
arch/csky/include/asm/pgtable.h
247
prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED;
arch/csky/include/asm/pgtable.h
74
_CACHE_MASK | _PAGE_GLOBAL))
arch/loongarch/include/asm/io.h
31
switch (pgprot_val(prot) & _CACHE_MASK) {
arch/loongarch/include/asm/pgtable-bits.h
109
#define _PAGE_CHG_MASK (_PAGE_MODIFIED | _PAGE_SPECIAL | _PFN_MASK | _CACHE_MASK | _PAGE_PLV)
arch/loongarch/include/asm/pgtable-bits.h
110
#define _HPAGE_CHG_MASK (_PAGE_MODIFIED | _PAGE_SPECIAL | _PFN_MASK | _CACHE_MASK | _PAGE_PLV | _PAGE_HUGE)
arch/loongarch/include/asm/pgtable-bits.h
142
prot = (prot & ~_CACHE_MASK) | _CACHE_SUC;
arch/loongarch/include/asm/pgtable-bits.h
155
prot = (prot & ~_CACHE_MASK) | (wc_enabled ? _CACHE_WUC : _CACHE_SUC);
arch/mips/include/asm/pgtable-bits.h
284
_CACHE_MASK | _PAGE_SPECIAL)
arch/mips/include/asm/pgtable.h
464
prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED;
arch/mips/include/asm/pgtable.h
476
prot = (prot & ~_CACHE_MASK) | cpu_data[0].writecombine;
arch/mips/include/asm/pgtable.h
511
pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
arch/mips/include/asm/pgtable.h
513
pte.pte_high |= pgprot_val(newprot) & ~(_PFN_MASK | _CACHE_MASK);
arch/mips/include/asm/pgtable.h
520
pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
arch/mips/include/asm/pgtable.h
522
pte.pte_high |= pgprot_val(newprot) & ~(_PFN_MASK | _CACHE_MASK);
arch/mips/mm/ioremap.c
49
unsigned long flags = pgprot_val(prot) & _CACHE_MASK;
arch/mips/mm/ioremap64.c
8
unsigned long flags = pgprot_val(prot) & _CACHE_MASK;
drivers/video/fbdev/gbefb.c
48
#define pgprot_fb(_prot) (((_prot) & (~_CACHE_MASK)) | _CACHE_UNCACHED_ACCELERATED)
drivers/video/fbdev/gbefb.c
50
#define pgprot_fb(_prot) (((_prot) & (~_CACHE_MASK)) | _CACHE_CACHABLE_NO_WA)