aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/fid.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2014-08-19 20:17:38 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2014-10-09 02:39:04 -0400
commit4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9 (patch)
tree9da39bc68079ecfc83bda50f1fada069948f8409 /fs/9p/fid.c
parentcifs: switch to use of %p[dD] (diff)
downloadlinux-dev-4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9.tar.xz
linux-dev-4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9.zip
9p: switch to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p/fid.c')
-rw-r--r--fs/9p/fid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/9p/fid.c b/fs/9p/fid.c
index d51ec9fafcc8..47db55aee7f2 100644
--- a/fs/9p/fid.c
+++ b/fs/9p/fid.c
@@ -65,8 +65,8 @@ static struct p9_fid *v9fs_fid_find(struct dentry *dentry, kuid_t uid, int any)
{
struct p9_fid *fid, *ret;
- p9_debug(P9_DEBUG_VFS, " dentry: %s (%p) uid %d any %d\n",
- dentry->d_name.name, dentry, from_kuid(&init_user_ns, uid),
+ p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p) uid %d any %d\n",
+ dentry, dentry, from_kuid(&init_user_ns, uid),
any);
ret = NULL;
/* we'll recheck under lock if there's anything to look in */