From mboxrd@z Thu Jan 1 00:00:00 1970 From: Valerie Aurora Subject: Re: [PATCH 03/41] VFS: Make lookup_hash() return a struct path Date: Thu, 10 Dec 2009 16:24:35 -0500 Message-ID: <20091210212434.GC10388@shell> References: <1256152779-10054-4-git-send-email-vaurora@redhat.com> <200911300604.nAU64D0s021921@agora.fsl.cs.sunysb.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jan Blunck , Alexander Viro , Christoph Hellwig , Andy Whitcroft , Scott James Remnant , Sandu Popa Marius , Jan Rekorajski , "J. R. Okajima" , Arnd Bergmann , Vladimir Dronnikov , Felix Fietkau , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org To: Erez Zadok Return-path: Content-Disposition: inline In-Reply-To: <200911300604.nAU64D0s021921@agora.fsl.cs.sunysb.edu> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Mon, Nov 30, 2009 at 01:04:13AM -0500, Erez Zadok wrote: > In message <1256152779-10054-4-git-send-email-vaurora@redhat.com>, Valerie Aurora writes: > > > @@ -1937,7 +1942,8 @@ EXPORT_SYMBOL(filp_open); > > */ > > struct dentry *lookup_create(struct nameidata *nd, int is_dir) > > { > > - struct dentry *dentry = ERR_PTR(-EEXIST); > > + struct path path = { .dentry = ERR_PTR(-EEXIST) } ; > > I assume the compiler will initialize path.mnt to NULL. Is NULL what you > want? Even if the compiler guarantees it, I think you should either > explicitly init .mnt to NULL or leave a comment explaining what's going on > -- so no future code reader will think that this was omitted; a comment can > clarify your intentions more explicitly. That is an unpleasant thing to look at. I rewrote the exit paths so that this initialization was unnecessary. Thanks, -VAL