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

Function pmap_zero_page

freebsd/arm64/arm64/pmap.c:4848–4854  ·  view source on GitHub ↗

* pmap_zero_page zeros the specified hardware page by mapping * the page into KVM and using bzero to clear its contents. */

Source from the content-addressed store, hash-verified

4846 * the page into KVM and using bzero to clear its contents.
4847 */
4848void
4849pmap_zero_page(vm_page_t m)
4850{
4851 vm_offset_t va = PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m));
4852
4853 pagezero((void *)va);
4854}
4855
4856/*
4857 * pmap_zero_page_area zeros the specified hardware page by mapping

Callers 2

_pmap_alloc_l3Function · 0.70
pmap_growkernelFunction · 0.70

Calls 1

pagezeroFunction · 0.50

Tested by

no test coverage detected