diff options
-rw-r--r-- | sys/ia64/ia64/pmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ia64/ia64/pmap.c b/sys/ia64/ia64/pmap.c index 7378475..ac7464e 100644 --- a/sys/ia64/ia64/pmap.c +++ b/sys/ia64/ia64/pmap.c @@ -2048,7 +2048,7 @@ pmap_zero_page_area(vm_page_t m, int off, int size) */ void -pmap_zero_page_area(vm_page_t m) +pmap_zero_page_idle(vm_page_t m) { vm_offset_t va = IA64_PHYS_TO_RR7(VM_PAGE_TO_PHYS(m)); bzero((caddr_t) va, PAGE_SIZE); @@ -2056,7 +2056,6 @@ pmap_zero_page_area(vm_page_t m) /* -/* * pmap_copy_page copies the specified (machine independent) * page by mapping the page into virtual memory and using * bcopy to copy the page, one machine dependent page at a |