summaryrefslogtreecommitdiffstats
path: root/share/man/man9/VOP_INACTIVE.9
diff options
context:
space:
mode:
authorarr <arr@FreeBSD.org>2001-11-20 18:19:19 +0000
committerarr <arr@FreeBSD.org>2001-11-20 18:19:19 +0000
commitd6a5097acfb786f3b9c7928ff97121c937d194df (patch)
tree34bd49faec8c8950d00eec1ab1e57d65b88ce539 /share/man/man9/VOP_INACTIVE.9
parentc58cb395e6c8970b1c3df2de4b29411cc80c467d (diff)
downloadFreeBSD-src-d6a5097acfb786f3b9c7928ff97121c937d194df.zip
FreeBSD-src-d6a5097acfb786f3b9c7928ff97121c937d194df.tar.gz
- Fix a number of man pages broken by the KSE merger.
Diffstat (limited to 'share/man/man9/VOP_INACTIVE.9')
-rw-r--r--share/man/man9/VOP_INACTIVE.910
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/VOP_INACTIVE.9 b/share/man/man9/VOP_INACTIVE.9
index fa2528d..696470e 100644
--- a/share/man/man9/VOP_INACTIVE.9
+++ b/share/man/man9/VOP_INACTIVE.9
@@ -39,9 +39,9 @@
.In sys/param.h
.In sys/vnode.h
.Ft int
-.Fn VOP_INACTIVE "struct vnode *vp" "struct proc *p"
+.Fn VOP_INACTIVE "struct vnode *vp" "struct thread *td"
.Ft int
-.Fn VOP_RECLAIM "struct vnode *vp" "struct proc *p"
+.Fn VOP_RECLAIM "struct vnode *vp" "struct thread *td"
.Sh DESCRIPTION
The arguments are:
.Bl -tag -width 2n
@@ -67,7 +67,7 @@ unlocked on return.
.Sh PSEUDOCODE
.Bd -literal
int
-vop_inactive(struct vnode *vp)
+vop_inactive(struct vnode *vp, struct thread *td)
{
if (link count of vp == 0) {
/*
@@ -75,13 +75,13 @@ vop_inactive(struct vnode *vp)
*/
...;
}
- VOP_UNLOCK(vp, 0, p);
+ VOP_UNLOCK(vp, 0, td);
return 0;
}
int
-vop_reclaim(struct vnode *vp)
+vop_reclaim(struct vnode *vp, struct thread *td)
{
/*
* Clean out the name cache.
OpenPOWER on IntegriCloud