* Zero the specified hardware page. */
| 7769 | * Zero the specified hardware page. |
| 7770 | */ |
| 7771 | void |
| 7772 | pmap_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 |
no test coverage detected