Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752727AbZK3GEr (ORCPT ); Mon, 30 Nov 2009 01:04:47 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752106AbZK3GEr (ORCPT ); Mon, 30 Nov 2009 01:04:47 -0500 Received: from filer.fsl.cs.sunysb.edu ([130.245.126.2]:57095 "EHLO filer.fsl.cs.sunysb.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751919AbZK3GEq (ORCPT ); Mon, 30 Nov 2009 01:04:46 -0500 Date: Mon, 30 Nov 2009 01:04:13 -0500 Message-Id: <200911300604.nAU64D0s021921@agora.fsl.cs.sunysb.edu> From: Erez Zadok To: Valerie Aurora 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 Subject: Re: [PATCH 03/41] VFS: Make lookup_hash() return a struct path In-reply-to: Your message of "Wed, 21 Oct 2009 12:19:01 PDT." <1256152779-10054-4-git-send-email-vaurora@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1074 Lines: 25 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. A struct path often requires both .mnt and .dentry to be set; it's not like, say, inode_operations, where clearly some fields can be initialized to NULL just fine. Erez. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/