From: Rasmus Villemoes Date: Fri, 6 Feb 2015 15:28:17 +0000 (+0100) Subject: autofs4: Wrong format for printing dentry X-Git-Tag: v4.0-rc1~2^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=76bf3f6b1d6ac4c770bb121b0461c460aa068e64;p=platform%2Fkernel%2Flinux-exynos.git autofs4: Wrong format for printing dentry %pD for struct file*, %pd for struct dentry*. Fixes: a455589f181e ("assorted conversions to %p[dD]") Signed-off-by: Rasmus Villemoes Signed-off-by: Al Viro --- diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index dbb5b7212ce1..7ba355b8d4ac 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c @@ -108,7 +108,7 @@ static int autofs4_dir_open(struct inode *inode, struct file *file) struct dentry *dentry = file->f_path.dentry; struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); - DPRINTK("file=%p dentry=%p %pD", file, dentry, dentry); + DPRINTK("file=%p dentry=%p %pd", file, dentry, dentry); if (autofs4_oz_mode(sbi)) goto out;