summaryrefslogtreecommitdiffstats
path: root/share/man/man9/VOP_INACTIVE.9
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-12-12 17:26:04 +0000
committerru <ru@FreeBSD.org>2002-12-12 17:26:04 +0000
commit041d1287e88250bf06ad159c6c696bd653a77957 (patch)
tree8a8960200349aa661a39654202f6e0adc5e7360e /share/man/man9/VOP_INACTIVE.9
parent719bf117173e17f5286b995c031a11d553149e50 (diff)
downloadFreeBSD-src-041d1287e88250bf06ad159c6c696bd653a77957.zip
FreeBSD-src-041d1287e88250bf06ad159c6c696bd653a77957.tar.gz
Uniformly refer to a file system as "file system".
Approved by: re
Diffstat (limited to 'share/man/man9/VOP_INACTIVE.9')
-rw-r--r--share/man/man9/VOP_INACTIVE.912
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/VOP_INACTIVE.9 b/share/man/man9/VOP_INACTIVE.9
index 696470e..9fa3833 100644
--- a/share/man/man9/VOP_INACTIVE.9
+++ b/share/man/man9/VOP_INACTIVE.9
@@ -34,7 +34,7 @@
.Sh NAME
.Nm VOP_INACTIVE ,
.Nm VOP_RECLAIM
-.Nd reclaim filesystem resources for a vnode
+.Nd reclaim file system resources for a vnode
.Sh SYNOPSIS
.In sys/param.h
.In sys/vnode.h
@@ -52,11 +52,11 @@ the vnode being reclaimed
.Xr VOP_INACTIVE 9
is called when the kernel is no longer using the vnode. This may be
because the reference count reaches zero or it may be that the
-filesystem is being forcibly unmounted while there are open files.
+file system is being forcibly unmounted while there are open files.
It can be used to reclaim space for 'open but deleted' files.
.Xr VOP_RECLAIM 9
-is called when a vnode is being reused for a different filesystem.
-Any filesystem specific resources associated with the vnode should be
+is called when a vnode is being reused for a different file system.
+Any file system specific resources associated with the vnode should be
freed.
.Sh LOCKS
For VOP_INACTIVE, the vp will be locked on entry. Your VOP_INACTIVE code
@@ -71,7 +71,7 @@ vop_inactive(struct vnode *vp, struct thread *td)
{
if (link count of vp == 0) {
/*
- * Reclaim space in filesystem for vp.
+ * Reclaim space in file system for vp.
*/
...;
}
@@ -89,7 +89,7 @@ vop_reclaim(struct vnode *vp, struct thread *td)
cache_purge(vp);
/*
- * Free filesystem-related data.
+ * Free file system related data.
*/
...;
OpenPOWER on IntegriCloud