summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man9/Makefile2
-rw-r--r--share/man/man9/vm_page_io.96
2 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile
index 92b5fa23bd16..4aeb763404db 100644
--- a/share/man/man9/Makefile
+++ b/share/man/man9/Makefile
@@ -192,7 +192,7 @@ MLINKS+=vm_page_free.9 vm_page_free_zero.9
MLINKS+=vm_page_free.9 vm_page_try_to_free.9
MLINKS+=vm_page_hold.9 vm_page_unhold.9
MLINKS+=vm_page_insert.9 vm_page_remove.9
-MLINKS+=vm_page_io.9 vm_page_io_start.9 vm_page_io.9 vm_page_io_finished.9
+MLINKS+=vm_page_io.9 vm_page_io_start.9 vm_page_io.9 vm_page_io_finish.9
MLINKS+=vm_page_wakeup.9 vm_page_busy.9
MLINKS+=vm_page_wakeup.9 vm_page_flash.9
MLINKS+=vm_page_wire.9 vm_page_unwire.9
diff --git a/share/man/man9/vm_page_io.9 b/share/man/man9/vm_page_io.9
index b2ed9650371d..62d67b52080e 100644
--- a/share/man/man9/vm_page_io.9
+++ b/share/man/man9/vm_page_io.9
@@ -31,7 +31,7 @@
.Os
.Sh NAME
.Nm vm_page_io_start ,
-.Nm vm_page_io_finished
+.Nm vm_page_io_finish
.Nd "ready or unready a page for I/O"
.Sh SYNOPSIS
.In sys/param.h
@@ -40,14 +40,14 @@
.Ft void
.Fn vm_page_io_start "vm_page_t m"
.Ft void
-.Fn vm_page_io_finished "vm_page_t m"
+.Fn vm_page_io_finish "vm_page_t m"
.Sh DESCRIPTION
The
.Fn vm_page_io_start
function prepares the page for I/O by incrementing its busy flag by 1.
.Pp
The
-.Fn vm_page_io_finished
+.Fn vm_page_io_finish
function lowers the busy count on the page by one, if the resulting busy
count is zero, a wakeup will be issued if the page has been marked
.Dv PG_WANTED .