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

Function vm_wait

freebsd/vm/vm_page.c:3269–3273  ·  view source on GitHub ↗

* vm_wait: * * Sleep until free pages are available for allocation in the * affinity domains of the obj. If obj is NULL, the domain set * for the calling thread is used. * Called in various places after failed memory allocations. */

Source from the content-addressed store, hash-verified

3267 * Called in various places after failed memory allocations.
3268 */
3269void
3270vm_wait(vm_object_t obj)
3271{
3272 (void)vm_wait_flags(obj, 0);
3273}
3274
3275int
3276vm_wait_intr(vm_object_t obj)

Callers 15

_pmap_allocpteFunction · 0.85
pmap_grow_direct_pageFunction · 0.85
uma_small_allocFunction · 0.85
pmap_allocpte_allocFunction · 0.85
pmap_enter_largepageFunction · 0.85
pmap_vmspace_copyFunction · 0.85
pmap_large_map_getptpFunction · 0.85
pmap_pkru_setFunction · 0.85
pmap_pkru_clearFunction · 0.85
pmap_pinit_stageFunction · 0.85
_pmap_alloc_l3Function · 0.85
pmap_enter_largepageFunction · 0.85

Calls 1

vm_wait_flagsFunction · 0.85

Tested by

no test coverage detected