Commit 76bf3f6b1d6ac4c770bb121b0461c460aa068e64

Authored by Rasmus Villemoes
Committed by Al Viro
1 parent fcbc32bc6c

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 <linux@rasmusvillemoes.dk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -108,7 +108,7 @@
108 108 struct dentry *dentry = file->f_path.dentry;
109 109 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
110 110  
111   - DPRINTK("file=%p dentry=%p %pD", file, dentry, dentry);
  111 + DPRINTK("file=%p dentry=%p %pd", file, dentry, dentry);
112 112  
113 113 if (autofs4_oz_mode(sbi))
114 114 goto out;