Searched refs:PG_W (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/sys/i386/include/
H A Dpmap.h74 #define PG_W PG_AVAIL1 /* "Wired" pseudoflag */ macro
95 #define PG_PTE_PROMOTE (PG_MANAGED | PG_W | PG_G | PG_PTE_PAT | \
/freebsd-12-stable/sys/i386/i386/
H A Dpmap.c192 #define pmap_pte_w(pte) ((*(int *)pte & PG_W) != 0)
197 #define pmap_pte_set_w(pte, v) ((v) ? atomic_set_int((u_int *)(pte), PG_W) : \
198 atomic_clear_int((u_int *)(pte), PG_W))
2436 if ((tpte & PG_W) == 0)
2439 if ((tpte & PG_W) != 0)
2847 KASSERT((oldpde & PG_W) == 0,
3031 if (oldpde & PG_W)
3088 if (oldpte & PG_W)
3314 if (tpte & PG_W)
3722 newpte |= PG_W;
[all...]
/freebsd-12-stable/sys/amd64/include/
H A Dpmap.h115 #define PG_W X86_PG_AVAIL3 /* "Wired" pseudoflag */ macro
128 #define PG_PTE_PROMOTE (PG_NX | PG_MANAGED | PG_W | PG_G | PG_PTE_CACHE | \
/freebsd-12-stable/sys/amd64/amd64/
H A Dpmap.c4201 if ((*pte & PG_W) != 0)
4843 KASSERT((oldpde & PG_W) == 0,
4851 KASSERT((oldpde & PG_W) == 0,
5019 if (oldpde & PG_W)
5075 if (oldpte & PG_W)
5365 if (tpte & PG_W)
5783 newpte |= PG_W;
5856 if ((newpte & PG_W) != 0 && (origpte & PG_W) == 0)
5858 else if ((newpte & PG_W)
[all...]

Completed in 118 milliseconds