aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2014-09-12 08:33:53 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2014-09-12 08:33:53 +0000
commit8d5605988e1e597f07fb6a1c73081eabe4f23093 (patch)
tree8132ea44a413c4d9fad711c07d2336e18595312f /share
parentdfa754ef3ef3d64bf5f1d02aef5f0312bc247193 (diff)
downloadsrc-8d5605988e1e597f07fb6a1c73081eabe4f23093.tar.gz
src-8d5605988e1e597f07fb6a1c73081eabe4f23093.zip
- Fix argument list after 271387.
- While here fix typo. Submitted by: markj
Notes
Notes: svn path=/head/; revision=271455
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/VOP_GETPAGES.910
1 files changed, 4 insertions, 6 deletions
diff --git a/share/man/man9/VOP_GETPAGES.9 b/share/man/man9/VOP_GETPAGES.9
index 7869d45474cd..2cc5b7acff10 100644
--- a/share/man/man9/VOP_GETPAGES.9
+++ b/share/man/man9/VOP_GETPAGES.9
@@ -29,7 +29,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd September 27, 2003
+.Dd September 12, 2014
.Dt VOP_GETPAGES 9
.Os
.Sh NAME
@@ -41,9 +41,9 @@
.In sys/vnode.h
.In vm/vm.h
.Ft int
-.Fn VOP_GETPAGES "struct vnode *vp" "vm_page_t *ma" "int count" "int reqpage" "vm_ooffset_t offset"
+.Fn VOP_GETPAGES "struct vnode *vp" "vm_page_t *ma" "int count" "int reqpage"
.Ft int
-.Fn VOP_PUTPAGES "struct vnode *vp" "vm_page_t *ma" "int count" "int sync" "int *rtvals" "vm_ooffset_t offset"
+.Fn VOP_PUTPAGES "struct vnode *vp" "vm_page_t *ma" "int count" "int sync" "int *rtvals"
.Sh DESCRIPTION
The
.Fn VOP_GETPAGES
@@ -81,8 +81,6 @@ page written by
.It Fa reqpage
The index in the page array of the requested page; i.e., the one page which
the implementation of this method must handle.
-.It Fa offset
-Offset in the file at which the mapped pages begin.
.El
.Pp
The status of the
@@ -156,7 +154,7 @@ is
.Sh SEE ALSO
.Xr vm_object_pip_wakeup 9 ,
.Xr vm_page_free 9 ,
-.Xr vm_pagge_sunbusy 9 ,
+.Xr vm_page_sunbusy 9 ,
.Xr vm_page_undirty 9 ,
.Xr vm_page_xunbusy 9 ,
.Xr vnode 9