x86/dumpstack: Avoid uninitlized variable
authorArnd Bergmann <[email protected]>
Fri, 2 Feb 2018 14:56:17 +0000 (15:56 +0100)
committerThomas Gleixner <[email protected]>
Fri, 2 Feb 2018 22:33:50 +0000 (23:33 +0100)
commitebfc15019cfa72496c674ffcb0b8ef10790dcddc
tree49cd863172029ca617efa4ad2af0ccb8ef98f1b3
parent5bf30316991d5bcda046343ee77d823cf16fdd03
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")
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Nicolas Pitre <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Josh Poimboeuf <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
arch/x86/kernel/dumpstack.c