Symbol: prot_bits
arch/arm/mm/dump.c
138
static const struct prot_bits section_bits[] = {
arch/arm/mm/dump.c
204
const struct prot_bits *bits;
arch/arm/mm/dump.c
207
const struct prot_bits *ro_bit;
arch/arm/mm/dump.c
208
const struct prot_bits *nx_bit;
arch/arm/mm/dump.c
227
static void dump_prot(struct pg_state *st, const struct prot_bits *bits, size_t num)
arch/arm/mm/dump.c
68
static const struct prot_bits pte_bits[] = {
arch/loongarch/kvm/mmu.c
776
unsigned long hva, mmu_seq, prot_bits;
arch/loongarch/kvm/mmu.c
852
prot_bits = _PAGE_PRESENT | __READABLE;
arch/loongarch/kvm/mmu.c
854
prot_bits |= _CACHE_CC;
arch/loongarch/kvm/mmu.c
856
prot_bits |= _CACHE_SUC;
arch/loongarch/kvm/mmu.c
859
prot_bits = kvm_pte_mkwriteable(prot_bits);
arch/loongarch/kvm/mmu.c
861
prot_bits = kvm_pte_mkdirty(prot_bits);
arch/loongarch/kvm/mmu.c
888
new_pte = kvm_pfn_pte(pfn, __pgprot(prot_bits));
arch/loongarch/kvm/mmu.c
907
if (kvm_pte_dirty(prot_bits))
arch/mips/kvm/mmu.c
558
unsigned long prot_bits;
arch/mips/kvm/mmu.c
617
prot_bits = _PAGE_PRESENT | __READABLE | _page_cachable_default;
arch/mips/kvm/mmu.c
619
prot_bits |= _PAGE_WRITE;
arch/mips/kvm/mmu.c
621
prot_bits |= __WRITEABLE;
arch/mips/kvm/mmu.c
625
entry = pfn_pte(pfn, __pgprot(prot_bits));
arch/riscv/mm/ptdump.c
135
static const struct prot_bits pte_bits[] = {
drivers/gpu/drm/msm/adreno/a2xx_gpummu.c
38
unsigned prot_bits = 0;
drivers/gpu/drm/msm/adreno/a2xx_gpummu.c
43
prot_bits |= 1;
drivers/gpu/drm/msm/adreno/a2xx_gpummu.c
45
prot_bits |= 2;
drivers/gpu/drm/msm/adreno/a2xx_gpummu.c
52
gpummu->table[idx++] = (addr + i) | prot_bits;
fs/ocfs2/ocfs1_fs_compat.h
55
__u32 prot_bits;
tools/testing/selftests/kvm/lib/loongarch/processor.c
120
uint32_t prot_bits;
tools/testing/selftests/kvm/lib/loongarch/processor.c
138
prot_bits = _PAGE_PRESENT | __READABLE | __WRITEABLE | _CACHE_CC | _PAGE_USER;
tools/testing/selftests/kvm/lib/loongarch/processor.c
139
WRITE_ONCE(*ptep, paddr | prot_bits);