From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753827AbbBLBRk (ORCPT ); Wed, 11 Feb 2015 20:17:40 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:51865 "EHLO out4-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751417AbbBLBRj (ORCPT ); Wed, 11 Feb 2015 20:17:39 -0500 X-Greylist: delayed 515 seconds by postgrey-1.27 at vger.kernel.org; Wed, 11 Feb 2015 20:17:39 EST X-Sasl-enc: mHEtn9fJn6WYmf4Cc4g6iZRkCm8dv05Vnrp4j6jCwUu1 1423703343 Message-ID: <1423703331.2663.2.camel@pluto.fritz.box> Subject: Re: [PATCH] autofs4: Wrong format for printing dentry From: Ian Kent To: Rasmus Villemoes Cc: Al Viro , autofs@vger.kernel.org, linux-kernel@vger.kernel.org Date: Thu, 12 Feb 2015 09:08:51 +0800 In-Reply-To: <87bnl0w58e.fsf@rasmusvillemoes.dk> References: <1423236497-28139-1-git-send-email-linux@rasmusvillemoes.dk> <87bnl0w58e.fsf@rasmusvillemoes.dk> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2015-02-11 at 21:41 +0100, Rasmus Villemoes wrote: > Ping... The patch looks fine to me. I'll check there are no other instances of this and send it to Al. > > On Fri, Feb 06 2015, Rasmus Villemoes wrote: > > > %pD for struct file*, %pd for struct dentry*. > > > > Fixes: a455589f181e ("assorted conversions to %p[dD]") > > Signed-off-by: Rasmus Villemoes > > --- > > fs/autofs4/root.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > 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;