aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/VFS_VGET.9
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2005-06-15 13:31:23 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2005-06-15 13:31:23 +0000
commit4f0689613061cb529e45bdd405b619dbb404b232 (patch)
tree58b1b51ae0cee4af458796860e303ff0d40670bc /share/man/man9/VFS_VGET.9
parentc1ef2d47b120ce40323306baf929f610cfcb87a3 (diff)
downloadsrc-4f0689613061cb529e45bdd405b619dbb404b232.tar.gz
src-4f0689613061cb529e45bdd405b619dbb404b232.zip
Assorted markup fixes and minor wordsmithing.
Approved by: re
Notes
Notes: svn path=/head/; revision=147398
Diffstat (limited to 'share/man/man9/VFS_VGET.9')
-rw-r--r--share/man/man9/VFS_VGET.914
1 files changed, 9 insertions, 5 deletions
diff --git a/share/man/man9/VFS_VGET.9 b/share/man/man9/VFS_VGET.9
index ae545e607358..02b55364127d 100644
--- a/share/man/man9/VFS_VGET.9
+++ b/share/man/man9/VFS_VGET.9
@@ -48,20 +48,20 @@ looks up or creates a vnode from a (mount, inode#) tupple.
Its arguments are:
.Bl -tag -width ".Fa flags"
.It Fa mp
-The mountpoint.
+The mount point.
.It Fa ino
The inode representing the file.
-This is a unique number assigned by the filesystem when vnodes are first
+This is a unique number assigned by the file system when vnodes are first
created.
.It Fa flags
Additional locking flags to pass through to
-.Xr vget 9
+.Xr vget 9 .
.It Fa vpp
Return parameter for the vnode.
.El
.Pp
This is an optional file system entry-point for file systems mainly
-intended for NFS server use, but many filesystems
+intended for NFS server use, but many file systems
use it internally in
.Xr VOP_LOOKUP 9
and similar.
@@ -69,7 +69,11 @@ and similar.
If the file system does not support this call, then it should return
.Er EOPNOTSUPP .
.Pp
-Please see sys/ufs/ffs/ffs_vfsops.c::ffs_vget() for the canonical example.
+Please see
+.Fn ffs_vget
+in
+.Pa sys/ufs/ffs/ffs_vfsops.c
+for the canonical example.
.Sh SEE ALSO
.Xr VFS 9 ,
.Xr vget 9 ,