* pmap_zero_page zeros the specified hardware page by mapping * the page into KVM and using bzero to clear its contents. */
| 4846 | * the page into KVM and using bzero to clear its contents. |
| 4847 | */ |
| 4848 | void |
| 4849 | pmap_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 |
no test coverage detected