Update man page for enum -> const char * change for v_tag

This commit is contained in:
Nate Lawson 2002-09-16 18:16:07 +00:00
parent 6c7e64b65c
commit 8c3308035a

View File

@ -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