Searched refs:ckpmap (Results 1 - 2 of 2) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dmappings.c1030 pmap_t refpmap, ckpmap; local
1072 ckpmap = refpmap;
1080 ckpmap = (pmap_t)ckpmap->pmap_link.next;
1085 if ((ckpmap->stats.resident_count != 0) && (ckpmap != kernel_pmap)
1086 && !(ckpmap->pmapFlags & (pmapVMgsaa|pmapVMhost))) {
1089 mp = hw_purge_map(ckpmap, va, &nextva);
1099 panic("mapping_alloc: hw_purge_map failed - pmap = %p, va = %16llX, code = %p\n", ckpmap, va, mp);
1114 if (ckpmap
[all...]
H A Dpmap.c667 pmap_t pmap, ckpmap, fore; local
703 ckpmap = cursor_pmap; /* Get starting point for free ID search */
704 currSID = ckpmap->spaceNum; /* Get the actual space ID number */
710 ckpmap = (pmap_t)ckpmap->pmap_link.next; /* On to the next in-use pmap */
712 if(ckpmap->spaceNum != currSID) break; /* If we are out of sequence, this is free */
714 if(ckpmap == cursor_pmap) { /* See if we have 2^20 already allocated */
725 fore = (pmap_t)ckpmap->pmap_link.prev; /* Get the current's previous */
726 pmap->pmap_link.next = (queue_t)ckpmap; /* My next points to the current */
729 ckpmap
[all...]

Completed in 24 milliseconds