| 1462 | } |
| 1463 | |
| 1464 | static __inline void |
| 1465 | pmap_resident_count_dec(pmap_t pmap, int count) |
| 1466 | { |
| 1467 | |
| 1468 | PMAP_LOCK_ASSERT(pmap, MA_OWNED); |
| 1469 | KASSERT(pmap->pm_stats.resident_count >= count, |
| 1470 | ("pmap %p resident count underflow %ld %d", pmap, |
| 1471 | pmap->pm_stats.resident_count, count)); |
| 1472 | pmap->pm_stats.resident_count -= count; |
| 1473 | } |
| 1474 | |
| 1475 | PMAP_INLINE pt_entry_t * |
| 1476 | vtopte(vm_offset_t va) |
no outgoing calls
no test coverage detected