Second round of spelling fixes for vm_page_io_finised. The function name

is actually vm_page_io_finish.
This commit is contained in:
Bruce Evans 2001-10-04 10:10:56 +00:00
parent f350e13c63
commit 9bcf4808fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84460
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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 .