MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pmap_resident_count_dec

Function pmap_resident_count_dec

freebsd/arm64/arm64/pmap.c:734–743  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

732}
733
734static __inline void
735pmap_resident_count_dec(pmap_t pmap, int count)
736{
737
738 PMAP_LOCK_ASSERT(pmap, MA_OWNED);
739 KASSERT(pmap->pm_stats.resident_count >= count,
740 ("pmap %p resident count underflow %ld %d", pmap,
741 pmap->pm_stats.resident_count, count));
742 pmap->pm_stats.resident_count -= count;
743}
744
745static pt_entry_t *
746pmap_early_page_idx(vm_offset_t l1pt, vm_offset_t va, u_int *l1_slot,

Callers 10

_pmap_unwire_l3Function · 0.70
reclaim_pv_chunkFunction · 0.70
pmap_remove_l2Function · 0.70
pmap_remove_l3Function · 0.70
pmap_remove_l3_rangeFunction · 0.70
pmap_removeFunction · 0.70
pmap_remove_allFunction · 0.70
pmap_sremoveFunction · 0.70
pmap_sremove_pagesFunction · 0.70
pmap_remove_pagesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected