Symbol: PG_W
sys/amd64/amd64/pmap.c
5309
if ((*pte & PG_W) != 0)
sys/amd64/amd64/pmap.c
5988
if ((oldpde & PG_W) == 0) {
sys/amd64/amd64/pmap.c
5997
KASSERT((oldpde & PG_W) == 0,
sys/amd64/amd64/pmap.c
6163
if (oldpde & PG_W)
sys/amd64/amd64/pmap.c
6225
if (oldpte & PG_W)
sys/amd64/amd64/pmap.c
6563
if (tpte & PG_W)
sys/amd64/amd64/pmap.c
7070
if ((pten & PG_W) != 0 && (origpte & PG_W) == 0)
sys/amd64/amd64/pmap.c
7072
else if ((pten & PG_W) == 0 && (origpte & PG_W) != 0)
sys/amd64/amd64/pmap.c
7146
newpte |= PG_W;
sys/amd64/amd64/pmap.c
7226
if ((newpte & PG_W) != 0 && (origpte & PG_W) == 0)
sys/amd64/amd64/pmap.c
7228
else if ((newpte & PG_W) == 0 && (origpte & PG_W) != 0)
sys/amd64/amd64/pmap.c
7307
if ((newpte & PG_W) != 0)
sys/amd64/amd64/pmap.c
7563
if ((newpde & PG_W) != 0 && pmap != kernel_pmap) {
sys/amd64/amd64/pmap.c
7614
if ((newpde & PG_W) != 0)
sys/amd64/amd64/pmap.c
7978
atomic_clear_long(pdpe, PG_W);
sys/amd64/amd64/pmap.c
7990
if ((*pde & PG_W) == 0)
sys/amd64/amd64/pmap.c
7999
atomic_clear_long(pde, PG_W);
sys/amd64/amd64/pmap.c
8012
if ((*pte & PG_W) == 0)
sys/amd64/amd64/pmap.c
8021
atomic_clear_long(pte, PG_W);
sys/amd64/amd64/pmap.c
8120
*pdpe = srcptepaddr & ~PG_W;
sys/amd64/amd64/pmap.c
8155
srcptepaddr &= ~PG_W;
sys/amd64/amd64/pmap.c
8205
*dst_pte = ptetemp & ~(PG_W | PG_M | PG_A);
sys/amd64/amd64/pmap.c
8410
if ((*pte & PG_W) != 0)
sys/amd64/amd64/pmap.c
8431
if ((*pte & PG_W) != 0)
sys/amd64/amd64/pmap.c
8583
if (tpte & PG_W) {
sys/amd64/amd64/pmap.c
9016
(oldpde & PG_W) == 0) {
sys/amd64/amd64/pmap.c
9102
} else if ((*pte & PG_W) == 0) {
sys/amd64/amd64/pmap.c
9222
if ((oldpde & PG_W) == 0) {
sys/amd64/amd64/pmap.c
9329
(oldpde & PG_W) == 0) {
sys/amd64/include/pmap.h
84
#define PG_PTE_PROMOTE (PG_NX | PG_MANAGED | PG_W | PG_G | PG_PTE_CACHE | \
sys/i386/i386/pmap.c
196
#define pmap_pte_w(pte) ((*(int *)pte & PG_W) != 0)
sys/i386/i386/pmap.c
201
#define pmap_pte_set_w(pte, v) ((v) ? atomic_set_int((u_int *)(pte), PG_W) : \
sys/i386/i386/pmap.c
202
atomic_clear_int((u_int *)(pte), PG_W))
sys/i386/i386/pmap.c
2358
if ((tpte & PG_W) == 0)
sys/i386/i386/pmap.c
2361
if ((tpte & PG_W) != 0)
sys/i386/i386/pmap.c
2769
KASSERT((oldpde & PG_W) == 0,
sys/i386/i386/pmap.c
2954
if (oldpde & PG_W)
sys/i386/i386/pmap.c
3011
if (oldpte & PG_W)
sys/i386/i386/pmap.c
3237
if (tpte & PG_W)
sys/i386/i386/pmap.c
3683
newpte |= PG_W;
sys/i386/i386/pmap.c
3754
if ((newpte & PG_W) != 0 && (origpte & PG_W) == 0)
sys/i386/i386/pmap.c
3756
else if ((newpte & PG_W) == 0 && (origpte & PG_W) != 0)
sys/i386/i386/pmap.c
3834
if ((newpte & PG_W) != 0)
sys/i386/i386/pmap.c
4028
if ((newpde & PG_W) != 0 && pmap != kernel_pmap) {
sys/i386/i386/pmap.c
4070
if ((newpde & PG_W) != 0)
sys/i386/i386/pmap.c
4392
if ((*pde & PG_W) == 0)
sys/i386/i386/pmap.c
4406
atomic_clear_int((u_int *)pde, PG_W);
sys/i386/i386/pmap.c
4430
if ((*pte & PG_W) == 0)
sys/i386/i386/pmap.c
4441
atomic_clear_int((u_int *)pte, PG_W);
sys/i386/i386/pmap.c
4509
~PG_W;
sys/i386/i386/pmap.c
4544
*dst_pte = ptetemp & ~(PG_W | PG_M |
sys/i386/i386/pmap.c
4804
if ((*pte & PG_W) != 0)
sys/i386/i386/pmap.c
4891
if (tpte & PG_W) {
sys/i386/i386/pmap.c
5228
(*pde & PG_W) == 0) {
sys/i386/i386/pmap.c
5340
if ((oldpde & PG_W) == 0) {
sys/i386/i386/pmap.c
5433
(oldpde & PG_W) == 0) {
sys/i386/include/pmap.h
82
#define PG_PTE_PROMOTE (PG_MANAGED | PG_W | PG_G | PG_PTE_PAT | \
sys/powerpc/aim/mmu_radix.c
1460
if ((be64toh(*pte) & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
2278
if ((oldl3e & PG_W) == 0) {
sys/powerpc/aim/mmu_radix.c
2469
(oldl3e & PG_W) == 0) {
sys/powerpc/aim/mmu_radix.c
2586
*l3e = htobe64(srcptepaddr & ~PG_W);
sys/powerpc/aim/mmu_radix.c
2631
*dst_pte = htobe64(ptetemp & ~(PG_W | PG_M |
sys/powerpc/aim/mmu_radix.c
2867
newpte |= PG_W;
sys/powerpc/aim/mmu_radix.c
2949
if ((newpte & PG_W) != 0 && (origpte & PG_W) == 0)
sys/powerpc/aim/mmu_radix.c
2951
else if ((newpte & PG_W) == 0 && (origpte & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
3054
if ((newpte & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
3268
if ((newpde & PG_W) != 0 && pmap != kernel_pmap) {
sys/powerpc/aim/mmu_radix.c
3315
if ((newpde & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
3967
(oldl3e & PG_W) == 0) {
sys/powerpc/aim/mmu_radix.c
4209
if ((be64toh(*pte) & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
4230
if ((be64toh(*pte) & PG_W) != 0)
sys/powerpc/aim/mmu_radix.c
4948
KASSERT((oldpde & PG_W) == 0,
sys/powerpc/aim/mmu_radix.c
5083
if (oldpde & PG_W)
sys/powerpc/aim/mmu_radix.c
5396
if (tpte & PG_W)
sys/powerpc/aim/mmu_radix.c
5526
if (tpte & PG_W) {
sys/powerpc/aim/mmu_radix.c
5745
if ((be64toh(*l3e) & PG_W) == 0)
sys/powerpc/aim/mmu_radix.c
5754
atomic_clear_long(l3e, htobe64(PG_W));
sys/powerpc/aim/mmu_radix.c
5768
if ((be64toh(*pte) & PG_W) == 0)
sys/powerpc/aim/mmu_radix.c
5777
atomic_clear_long(pte, htobe64(PG_W));
sys/powerpc/aim/mmu_radix.c
863
#define PG_PTE_PROMOTE (PG_X | PG_MANAGED | PG_W | PG_PTE_CACHE | \