summaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_dir.c
diff options
context:
space:
mode:
authorAl Viro2014-08-20 02:17:38 +0200
committerAl Viro2014-10-09 08:39:04 +0200
commit4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9 (patch)
tree9da39bc68079ecfc83bda50f1fada069948f8409 /fs/9p/vfs_dir.c
parentcifs: switch to use of %p[dD] (diff)
downloadkernel-qcow2-linux-4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9.tar.gz
kernel-qcow2-linux-4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9.tar.xz
kernel-qcow2-linux-4b8e992392a2468f90ae8b5b9f3e95c5f54a61c9.zip
9p: switch to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p/vfs_dir.c')
-rw-r--r--fs/9p/vfs_dir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/9p/vfs_dir.c b/fs/9p/vfs_dir.c
index 0b3bfa303dda..4f1151088ebe 100644
--- a/fs/9p/vfs_dir.c
+++ b/fs/9p/vfs_dir.c
@@ -116,7 +116,7 @@ static int v9fs_dir_readdir(struct file *file, struct dir_context *ctx)
int reclen = 0;
struct p9_rdir *rdir;
- p9_debug(P9_DEBUG_VFS, "name %s\n", file->f_path.dentry->d_name.name);
+ p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
fid = file->private_data;
buflen = fid->clnt->msize - P9_IOHDRSZ;
@@ -172,7 +172,7 @@ static int v9fs_dir_readdir_dotl(struct file *file, struct dir_context *ctx)
struct p9_rdir *rdir;
struct p9_dirent curdirent;
- p9_debug(P9_DEBUG_VFS, "name %s\n", file->f_path.dentry->d_name.name);
+ p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
fid = file->private_data;
buflen = fid->clnt->msize - P9_READDIRHDRSZ;