svn commit: r280500 - stable/9/share/man/man9
Dmitry Chagin
dchagin at FreeBSD.org
Wed Mar 25 09:58:03 UTC 2015
Author: dchagin
Date: Wed Mar 25 09:58:02 2015
New Revision: 280500
URL: https://svnweb.freebsd.org/changeset/base/280500
Log:
MFC r279776:
Add a cred parameter to the VOP_VPTOCNP(9) manpage.
While here fix igor warning about new line.
Modified:
stable/9/share/man/man9/VOP_VPTOCNP.9
Directory Properties:
stable/9/ (props changed)
stable/9/share/ (props changed)
stable/9/share/man/ (props changed)
stable/9/share/man/man9/ (props changed)
Modified: stable/9/share/man/man9/VOP_VPTOCNP.9
==============================================================================
--- stable/9/share/man/man9/VOP_VPTOCNP.9 Wed Mar 25 09:56:48 2015 (r280499)
+++ stable/9/share/man/man9/VOP_VPTOCNP.9 Wed Mar 25 09:58:02 2015 (r280500)
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd November 19, 2011
+.Dd March 8, 2015
.Dt VOP_VPTOCNP 9
.Os
.Sh NAME
@@ -36,9 +36,10 @@
.Nd translate a vnode to its component name
.Sh SYNOPSIS
.In sys/param.h
+.In sys/ucred.h
.In sys/vnode.h
.Ft int
-.Fn VOP_VPTOCNP "struct vnode *vp" "struct vnode **dvp" "char *buf" "int *buflen"
+.Fn VOP_VPTOCNP "struct vnode *vp" "struct vnode **dvp" "struct ucred *cred" "char *buf" "int *buflen"
.Sh DESCRIPTION
This translates a vnode into its component name, and writes that name to
the head of the buffer specified by
@@ -49,6 +50,8 @@ The vnode to translate.
.It Fa dvp
The vnode of the parent directory of
.Fa vp .
+.It Fa cred
+The caller credentials.
.It Fa buf
The buffer into which to prepend the component name.
.It Fa buflen
@@ -59,7 +62,8 @@ The default implementation of
.Nm
scans through
.Fa vp Ns 's
-parent directory looking for a dirent with a matching file number. If
+parent directory looking for a dirent with a matching file number.
+If
.Fa vp
is not a directory, then
.Nm
More information about the svn-src-stable-9
mailing list