| 1454 | } |
| 1455 | |
| 1456 | static __inline void |
| 1457 | pmap_resident_count_inc(pmap_t pmap, int count) |
| 1458 | { |
| 1459 | |
| 1460 | PMAP_LOCK_ASSERT(pmap, MA_OWNED); |
| 1461 | pmap->pm_stats.resident_count += count; |
| 1462 | } |
| 1463 | |
| 1464 | static __inline void |
| 1465 | pmap_resident_count_dec(pmap_t pmap, int count) |
no outgoing calls
no test coverage detected