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

Function pmap_zero_page

freebsd/amd64/amd64/pmap.c:7771–7777  ·  view source on GitHub ↗

* Zero the specified hardware page. */

Source from the content-addressed store, hash-verified

7769 * Zero the specified hardware page.
7770 */
7771void
7772pmap_zero_page(vm_page_t m)
7773{
7774 vm_offset_t va = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m));
7775
7776 pagezero((void *)va);
7777}
7778
7779/*
7780 * Zero an an area within a single hardware page. off and size must not

Callers 4

pmap_bootstrap_la57Function · 0.70
pmap_allocpte_nosleepFunction · 0.70
pmap_growkernelFunction · 0.70

Calls 1

pagezeroFunction · 0.50

Tested by

no test coverage detected