Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964843AbbELVbg (ORCPT ); Tue, 12 May 2015 17:31:36 -0400 Received: from mout.kundenserver.de ([212.227.126.130]:62652 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933017AbbELVbe (ORCPT ); Tue, 12 May 2015 17:31:34 -0400 From: Arnd Bergmann To: "J. Bruce Fields" Cc: linux-nfs@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] nfsd: work around a gcc-5.1 warning Date: Tue, 12 May 2015 23:31:29 +0200 Message-ID: <2121336.tAfQfAWQ2u@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:3uMV3+94MYHWvnUFxkZwEE6hz36H4GLEgqtHWk+b+WD09ANcEX/ pwffot6hhy39u87xxJlzzkkgSvvzh/+pmRLXMelCyY0T02v/uc7OaF4AS/bM3lOrRqEXX5I olfcD1UrQrivEb0pP5r3YcWdGtHFNjZAEe27ULhGGZAVgA8rg/45e4yN3ETGQN/RPOx3Z2a SoLq+z+NOe3gow9CHE/nA== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1422 Lines: 40 gcc-5.0 warns about a potential uninitialized variable use in nfsd: fs/nfsd/nfs4state.c: In function 'nfsd4_process_open2': fs/nfsd/nfs4state.c:3781:3: warning: 'old_deny_bmap' may be used uninitialized in this function [-Wmaybe-uninitialized] reset_union_bmap_deny(old_deny_bmap, stp); ^ fs/nfsd/nfs4state.c:3760:16: note: 'old_deny_bmap' was declared here unsigned char old_deny_bmap; ^ This is a false positive, the code path that is warned about cannot actually be reached. This adds an initialization for the variable to make the warning go away. Signed-off-by: Arnd Bergmann --- This warning shows up in some ARM defconfig builds, which we try to build with no warnings to detect regressions. diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 38f2d7abe3a7..997eda362a75 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -3770,6 +3770,8 @@ nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *c set_deny(open->op_share_deny, stp); fp->fi_share_deny |= (open->op_share_deny & NFS4_SHARE_DENY_BOTH); + } else { + old_deny_bmap = 0; } spin_unlock(&fp->fi_lock); -- 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/