summaryrefslogtreecommitdiffstats
path: root/share/man/man9/vnode.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/vnode.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/vnode.9')
-rw-r--r--share/man/man9/vnode.912
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/vnode.9 b/share/man/man9/vnode.9
index 84510f2..dc163f2 100644
--- a/share/man/man9/vnode.9
+++ b/share/man/man9/vnode.9
@@ -57,7 +57,7 @@ enum vtagtype {
};
/*
- * Each underlying filesystem allocates its own private area and hangs
+ * Each underlying file system allocates its own private area and hangs
* it from v_data. If non-null, this area is freed in getnewvnode().
*/
TAILQ_HEAD(buflists, buf);
@@ -127,7 +127,7 @@ struct vnode {
/*
* Vnode flags.
*/
-#define VROOT 0x00001 /* root of its filesystem */
+#define VROOT 0x00001 /* root of its file system */
#define VTEXT 0x00002 /* vnode is a pure text prototype */
#define VSYSTEM 0x00004 /* vnode being used by kernel */
#define VISTTY 0x00008 /* vnode represents a tty */
@@ -174,7 +174,7 @@ When both the
and the
.Dv v_holdcnt
of a vnode reaches zero then the vnode will be put on the freelist
-and may be reused for another file, possibly in another filesystem.
+and may be reused for another file, possibly in another file system.
The transition to and from the freelist is handled by
.Xr getnewvnode 9 ,
.Xr vfree 9
@@ -204,17 +204,17 @@ Other commonly used members of the vnode structure are
.Dv v_id
which is used to maintain consistency in the name cache,
.Dv v_mount
-which points at the filesystem which owns the vnode,
+which points at the file system which owns the vnode,
.Dv v_type
which contains the type of object the vnode represents and
.Dv v_data
-which is used by filesystems to store filesystem specific data with
+which is used by file systems to store file system specific data with
the vnode.
The
.Dv v_op
field is used by the
.Dv VOP_*
-macros to call functions in the filesystem which implement the vnode's
+macros to call functions in the file system which implement the vnode's
functionality.
.Sh VNODE TYPES
.Bl -tag -width VSOCK
OpenPOWER on IntegriCloud