expand some comments (d_path / seq_path)
Explain that you really need to use the return value of d_path rather than the buffer you passed into it. Also fix the comment for seq_path(), the function arguments changed recently but the comment hadn't been updated in sync. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
committed by
Al Viro
parent
be42c4c433
commit
52afeefb9d
@@ -389,8 +389,14 @@ char *mangle_path(char *s, char *p, char *esc)
|
||||
}
|
||||
EXPORT_SYMBOL(mangle_path);
|
||||
|
||||
/*
|
||||
* return the absolute path of 'dentry' residing in mount 'mnt'.
|
||||
/**
|
||||
* seq_path - seq_file interface to print a pathname
|
||||
* @m: the seq_file handle
|
||||
* @path: the struct path to print
|
||||
* @esc: set of characters to escape in the output
|
||||
*
|
||||
* return the absolute path of 'path', as represented by the
|
||||
* dentry / mnt pair in the path parameter.
|
||||
*/
|
||||
int seq_path(struct seq_file *m, struct path *path, char *esc)
|
||||
{
|
||||
|
Reference in New Issue
Block a user