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

/freebsd-10.0-release/sys/i386/i386/
H A Dpmap.c1529 pt_entry_t *endpte, oldpte, pa, *pte; local
1532 oldpte = 0;
1539 oldpte |= *pte;
1544 if (__predict_false((oldpte & PG_V) != 0))
2874 pt_entry_t oldpte;
2879 oldpte = pte_load_clear(ptq);
2880 KASSERT(oldpte != 0,
2882 if (oldpte & PG_W)
2888 if (oldpte & PG_G)
2891 if (oldpte
2873 pt_entry_t oldpte; local
3317 pt_entry_t *firstpte, oldpte, pa, *pte; local
4691 pt_entry_t oldpte, *pte; local
4971 pt_entry_t oldpte, *pte; local
[all...]
/freebsd-10.0-release/sys/amd64/amd64/
H A Dpmap.c1967 pt_entry_t *endpte, oldpte, pa, *pte; local
1971 oldpte = 0;
1979 oldpte |= *pte;
1984 if (__predict_false((oldpte & X86_PG_V) != 0))
3507 pt_entry_t oldpte, PG_A, PG_M, PG_RW;
3515 oldpte = pte_load_clear(ptq);
3516 if (oldpte & PG_W)
3519 if (oldpte & PG_MANAGED) {
3520 m = PHYS_TO_VM_PAGE(oldpte & PG_FRAME);
3521 if ((oldpte
3506 pt_entry_t oldpte, PG_A, PG_M, PG_RW; local
3982 pt_entry_t *firstpte, oldpte, pa, *pte; local
5469 pt_entry_t oldpte, *pte, PG_M, PG_RW; local
5930 pt_entry_t oldpte, *pte, PG_M, PG_RW, PG_V; local
[all...]
/freebsd-10.0-release/sys/i386/xen/
H A Dpmap.c2293 pt_entry_t oldpte;
2301 oldpte = *ptq;
2303 KASSERT(oldpte != 0,
2305 if (oldpte & PG_W)
2311 if (oldpte & PG_G)
2314 if (oldpte & PG_MANAGED) {
2315 m = PHYS_TO_VM_PAGE(xpmap_mtop(oldpte) & PG_FRAME);
2316 if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
2318 if (oldpte & PG_A)
3819 pt_entry_t oldpte, *pt
2292 pt_entry_t oldpte; local
3818 pt_entry_t oldpte, *pte; local
[all...]
/freebsd-10.0-release/sys/mips/mips/
H A Dpmap.c1380 pt_entry_t *pte, oldpte; local
1425 oldpte = *pte;
1426 if (pte_test(&oldpte, PTE_W))
1432 m = PHYS_TO_VM_PAGE(TLBLO_PTE_TO_PA(oldpte));
1433 if (pte_test(&oldpte, PTE_D))
1673 pt_entry_t oldpte; local
1685 oldpte = *ptq;
1691 if (pte_test(&oldpte, PTE_W))
1696 if (pte_test(&oldpte, PTE_MANAGED)) {
1697 pa = TLBLO_PTE_TO_PA(oldpte);
[all...]
/freebsd-10.0-release/sys/arm/arm/
H A Dpmap-v6.c3712 pt_entry_t *firstptep, firstpte, oldpte, pa, *pte; local
3803 oldpte = *pte;
3804 if (l2pte_pa(oldpte) != pa) {
3810 if ((oldpte & L2_S_PROMOTE) != (firstpte & L2_S_PROMOTE)) {
3816 oldm = PHYS_TO_VM_PAGE(l2pte_pa(oldpte));
3832 if (!L2_S_WRITABLE(oldpte) && (pve->pv_flags & PVF_WRITE))

Completed in 317 milliseconds