Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76bf3f6b authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Al Viro
Browse files

autofs4: Wrong format for printing dentry



%pD for struct file*, %pd for struct dentry*.

Fixes: a455589f ("assorted conversions to %p[dD]")
Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent fcbc32bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;