From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752263AbeBEVjW (ORCPT ); Mon, 5 Feb 2018 16:39:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41900 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752060AbeBEVjN (ORCPT ); Mon, 5 Feb 2018 16:39:13 -0500 Date: Mon, 5 Feb 2018 15:39:11 -0600 From: Josh Poimboeuf To: Arnd Bergmann Cc: Ingo Molnar , Dave Hansen , Thomas Gleixner , Nicolas Pitre , Vlastimil Babka , Peter Zijlstra , Andy Lutomirski , "H. Peter Anvin" , bpetkov@suse.de, Linux Kernel Mailing List , Andi Kleen , linux-tip-commits@vger.kernel.org Subject: Re: [tip:x86/urgent] x86/dumpstack: Avoid uninitlized variable Message-ID: <20180205213911.2auyud6a3k2ng7jx@treble> References: <20180202145634.200291-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.0.1 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 05, 2018 at 10:21:06PM +0100, Arnd Bergmann wrote: > On Fri, Feb 2, 2018 at 11:36 PM, tip-bot for Arnd Bergmann > wrote: > > Commit-ID: ebfc15019cfa72496c674ffcb0b8ef10790dcddc > > Gitweb: https://git.kernel.org/tip/ebfc15019cfa72496c674ffcb0b8ef10790dcddc > > Author: Arnd Bergmann > > AuthorDate: Fri, 2 Feb 2018 15:56:17 +0100 > > Committer: Thomas Gleixner > > CommitDate: Fri, 2 Feb 2018 23:33:50 +0100 > > > > x86/dumpstack: Avoid uninitlized variable > > > > In some configurations, 'partial' does not get initialized, as shown by > > this gcc-8 warning: > > > > arch/x86/kernel/dumpstack.c: In function 'show_trace_log_lvl': > > arch/x86/kernel/dumpstack.c:156:4: error: 'partial' may be used uninitialized in this function [-Werror=maybe-uninitialized] > > show_regs_if_on_stack(&stack_info, regs, partial); > > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > > This initializes it to false, to get the previous behavior in this case. > > > > Fixes: a9cdbe72c4e8 ("x86/dumpstack: Fix partial register dumps") > > > I just noticed my annotation got lost when I sent the patch. I originally > meant to ask Josh to double-check whether it should be 'false' or 'true' > here, or if we maybe need a larger change. > > Josh, could you take a look? Unfortunately I did not really understand > your original commit, so I don't know what the safe choice is here > in those cases in which 'partial' is uninitialized. I think it doesn't matter, it seems to be a false positive warning. The 'partial' variable is only used when 'regs' is non-NULL, and 'regs' is only set in unwind_get_entry_regs() after 'partial' gets initialized. -- Josh