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

Function vm_page_free_zero

freebsd/vm/vm_page.c:1340–1346  ·  view source on GitHub ↗

* vm_page_free_zero: * * Free a page to the zerod-pages queue */

Source from the content-addressed store, hash-verified

1338 * Free a page to the zerod-pages queue
1339 */
1340void
1341vm_page_free_zero(vm_page_t m)
1342{
1343
1344 m->flags |= PG_ZERO;
1345 vm_page_free_toq(m);
1346}
1347
1348/*
1349 * Unbusy and handle the page queueing for a page from a getpages request that

Callers 8

_pmap_unwire_ptpFunction · 0.85
_pmap_allocpteFunction · 0.85
pmap_releaseFunction · 0.85
pmap_allocpte_nosleepFunction · 0.85
pmap_releaseFunction · 0.85
pmap_pti_free_pageFunction · 0.85
_pmap_alloc_l3Function · 0.85
pmap_releaseFunction · 0.85

Calls 1

vm_page_free_toqFunction · 0.85

Tested by

no test coverage detected