diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2022-01-30 15:03:49 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2022-08-20 11:34:04 -0400 |
commit | 0f60d28828dd94779c6527440289e1c36a05115a (patch) | |
tree | 3775581791b529f2924f541d38f6ce7ef78cc2de /fs/pipe.c | |
parent | 568035b01cfb107af8d2e4bd2fb9aea22cf5b868 (diff) |
dynamic_dname(): drop unused dentry argument
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/pipe.c')
-rw-r--r-- | fs/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/pipe.c b/fs/pipe.c index 74ae9fafd25a..42c7ff41c2db 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -860,7 +860,7 @@ static struct vfsmount *pipe_mnt __read_mostly; */ static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen) { - return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]", + return dynamic_dname(buffer, buflen, "pipe:[%lu]", d_inode(dentry)->i_ino); } |