d_path: Make seq_path() use a struct path argument
seq_path() is always called with a dentry and a vfsmount from a struct path. Make seq_path() take it directly as an argument. Signed-off-by: Jan Blunck <jblunck@suse.de> Cc: Christoph Hellwig <hch@lst.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: "J. Bruce Fields" <bfields@fieldses.org> Cc: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
e83aece3af
commit
c32c2f63a9
@ -271,7 +271,7 @@ static int show_map(struct seq_file *m, void *v)
|
||||
*/
|
||||
if (file) {
|
||||
pad_len_spaces(m, len);
|
||||
seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n");
|
||||
seq_path(m, &file->f_path, "\n");
|
||||
} else {
|
||||
const char *name = arch_vma_name(vma);
|
||||
if (!name) {
|
||||
|
Reference in New Issue
Block a user