Symbol: PTE_D
sys/arch/riscv/include/pte.h
110
#define PTE_HARDWIRED (PTE_A | PTE_D)
sys/arch/riscv/include/pte.h
139
return (pte & PTE_D) != 0;
sys/arch/riscv/include/pte.h
188
return pte & ~PTE_D;
sys/arch/riscv/include/pte.h
267
pte |= PTE_A | PTE_D;
sys/arch/riscv/riscv/riscv_machdep.c
958
(pte & PTE_D) ? 'D' : '.',
sys/arch/riscv/riscv/trap.c
369
if ((npte & (PTE_W | PTE_D)) == PTE_W) {
sys/arch/riscv/riscv/trap.c
370
npte |= PTE_A | PTE_D;
sys/arch/riscv/riscv/trap.c
375
if ((npte & PTE_D) == 0) {
sys/arch/riscv/riscv/trap.c
376
npte |= PTE_A | PTE_D;
sys/arch/x86/x86/patch.c
260
pte = L2_BASE[pl2_i(va)] & ~PTE_D;
sys/arch/x86/x86/patch.c
265
pte = L1_BASE[pl1_i(va)] & ~PTE_D;
sys/arch/x86/x86/pmap.c
1087
npte &= ~(PTE_W|PTE_D);
sys/arch/x86/x86/pmap.c
4012
const pd_entry_t pteflags = PTE_P | PTE_W | pmap_pg_nx | PTE_D | PTE_A;
sys/arch/x86/x86/pmap.c
4069
pmap_pte_set(dstpte, pmap_pa2pte(dstpa) | pteflags | PTE_D);
sys/arch/x86/x86/pmap.c
4099
const pd_entry_t pteflags = PTE_P | PTE_W | pmap_pg_nx | PTE_A | PTE_D;
sys/arch/x86/x86/pmap.c
4101
const pd_entry_t pteflags = PTE_P | pmap_pg_nx | PTE_A | PTE_D;
sys/arch/x86/x86/pmap.c
4423
KASSERT((opte & (PTE_D | PTE_A)) != PTE_D);
sys/arch/x86/x86/pmap.c
4450
!(clearbits == PTE_W && (opte & PTE_D) == 0);
sys/arch/x86/x86/pmap.c
4458
npte &= ~(PTE_A | PTE_D);
sys/arch/x86/x86/pmap.c
4460
KASSERT((npte & (PTE_D | PTE_A)) != PTE_D);
sys/arch/x86/x86/pmap.c
4891
if ((opte & PTE_D) != 0) {
sys/arch/x86/x86/pmap.c
5033
npte |= PTE_D;
sys/arch/x86/x86/pmap.c
5144
npte |= opte & (PTE_A | PTE_D);
sys/arch/x86/x86/pmap.c
648
if (pte & PTE_D)
sys/arch/x86/x86/pmap.c
662
pte |= PTE_D;
tests/modules/x86_pte_tester/x86_pte_tester.c
235
if (!is_flag(pde, PTE_W) && is_flag(pde, PTE_D)) {