Commit a03a8a70 authored by Jan Blunck's avatar Jan Blunck Committed by Linus Torvalds

d_path: kerneldoc cleanup

Move and update d_path() kernel API documentation.
Signed-off-by: default avatarJan Blunck <jblunck@suse.de>
Acked-by: default avatarChristoph Hellwig <hch@infradead.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 329c97f0
...@@ -1843,8 +1843,21 @@ static char *__d_path(struct dentry *dentry, struct vfsmount *vfsmnt, ...@@ -1843,8 +1843,21 @@ static char *__d_path(struct dentry *dentry, struct vfsmount *vfsmnt,
return ERR_PTR(-ENAMETOOLONG); return ERR_PTR(-ENAMETOOLONG);
} }
/* write full pathname into buffer and return start of pathname */ /**
char * d_path(struct dentry *dentry, struct vfsmount *vfsmnt, * d_path - return the path of a dentry
* @dentry: dentry to report
* @vfsmnt: vfsmnt to which the dentry belongs
* @buf: buffer to return value in
* @buflen: buffer length
*
* Convert a dentry into an ASCII path name. If the entry has been deleted
* the string " (deleted)" is appended. Note that this is ambiguous.
*
* Returns the buffer or an error code if the path was too long.
*
* "buflen" should be positive. Caller holds the dcache_lock.
*/
char *d_path(struct dentry *dentry, struct vfsmount *vfsmnt,
char *buf, int buflen) char *buf, int buflen)
{ {
char *res; char *res;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment