aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/getnewvnode.9
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2002-09-16 18:16:07 +0000
committerNate Lawson <njl@FreeBSD.org>2002-09-16 18:16:07 +0000
commit8c3308035afd1af413b0c2fa9ac2c5619c27fd02 (patch)
tree26c41c6b893339e516eb9f13d9b186baea0e1fe0 /share/man/man9/getnewvnode.9
parent6c7e64b65cfcbec68f34fe7a2d03e151c80ed73f (diff)
downloadsrc-8c3308035afd1af413b0c2fa9ac2c5619c27fd02.tar.gz
src-8c3308035afd1af413b0c2fa9ac2c5619c27fd02.zip
Update man page for enum -> const char * change for v_tag
Notes
Notes: svn path=/head/; revision=103403
Diffstat (limited to 'share/man/man9/getnewvnode.9')
-rw-r--r--share/man/man9/getnewvnode.95
1 files changed, 3 insertions, 2 deletions
diff --git a/share/man/man9/getnewvnode.9 b/share/man/man9/getnewvnode.9
index 8ccbd2852bca..564fbf9edeb3 100644
--- a/share/man/man9/getnewvnode.9
+++ b/share/man/man9/getnewvnode.9
@@ -37,7 +37,7 @@
.In sys/vnode.h
.In sys/mount.h
.Ft int
-.Fn getnewvnode "enum vtagtype tag" "struct mount *mp" "vop_t **vops" "struct vnode **vpp"
+.Fn getnewvnode "const char *tag" "struct mount *mp" "vop_t **vops" "struct vnode **vpp"
.Sh DESCRIPTION
The
.Fn getnewvnode
@@ -51,7 +51,8 @@ The arguments to
are:
.Bl -tag -width ".Fa vops"
.It Fa tag
-The filesystem type.
+The filesystem type string. This field should only be referenced for
+debugging or for userland utilities.
.It Fa mp
The mount point to add the new vnode to.
.It Fa vops