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

/freebsd-11-stable/sys/i386/i386/
H A Dpmap.c1691 pt_entry_t *endpte, oldpte, pa, *pte; local
1694 oldpte = 0;
1701 oldpte |= *pte;
1706 if (__predict_false((oldpte & PG_V) != 0))
2907 pt_entry_t oldpte; local
2912 oldpte = pte_load_clear(ptq);
2913 KASSERT(oldpte != 0,
2915 if (oldpte & PG_W)
2921 if (oldpte & PG_G)
2924 if (oldpte
3358 pt_entry_t *firstpte, oldpte, pa, *pte; local
4808 pt_entry_t oldpte, *pte; local
5109 pt_entry_t oldpte, *pte; local
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Dpmap.c2434 pt_entry_t *endpte, oldpte, pa, *pte; local
2438 oldpte = 0;
2446 oldpte |= *pte;
2451 if (__predict_false((oldpte & X86_PG_V) != 0))
4109 pt_entry_t oldpte, PG_A, PG_M, PG_RW;
4117 oldpte = pte_load_clear(ptq);
4118 if (oldpte & PG_W)
4121 if (oldpte & PG_MANAGED) {
4122 m = PHYS_TO_VM_PAGE(oldpte & PG_FRAME);
4123 if ((oldpte
4108 pt_entry_t oldpte, PG_A, PG_M, PG_RW; local
4645 pt_entry_t *firstpte, oldpte, pa, *pte; local
6324 pt_entry_t oldpte, *pte, PG_M, PG_RW; local
6796 pt_entry_t oldpte, *pte, PG_M, PG_RW, PG_V; local
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dpmap.c1390 pt_entry_t *pte, oldpte; local
1435 oldpte = *pte;
1436 if (pte_test(&oldpte, PTE_W))
1442 m = PHYS_TO_VM_PAGE(TLBLO_PTE_TO_PA(oldpte));
1443 if (pte_test(&oldpte, PTE_D))
1683 pt_entry_t oldpte; local
1695 oldpte = *ptq;
1701 if (pte_test(&oldpte, PTE_W))
1706 if (pte_test(&oldpte, PTE_MANAGED)) {
1707 pa = TLBLO_PTE_TO_PA(oldpte);
[all...]
/freebsd-11-stable/sys/arm64/arm64/
H A Dpmap.c4011 pt_entry_t oldpte, *pte; local
4071 oldpte = pmap_load(pte);
4072 if ((oldpte & ATTR_AP_RW_BIT) == ATTR_AP(ATTR_AP_RW)) {
4073 if (!atomic_cmpset_long(pte, oldpte,
4074 oldpte | ATTR_AP(ATTR_AP_RO)))
4076 if ((oldpte & ATTR_AF) != 0)

Completed in 213 milliseconds