Re: [PATCH] x86/dumpstack: make show_trace_log_lvl() static

2020-11-20 Thread Petr Mladek
On Fri 2020-11-13 21:39:43, Hui Su wrote: > show_trace_log_lvl() won't be used by other files, so > make it static and remove the declaration from the header > file. > > Signed-off-by: Hui Su I would make sense to add: Fixes: 16d1cb0bc43642a4d9 ("x86/dumpstack: Unify show_regs()") Othrewise,

[PATCH] x86/dumpstack: make show_trace_log_lvl() static

2020-11-13 Thread Hui Su
show_trace_log_lvl() won't be used by other files, so make it static and remove the declaration from the header file. Signed-off-by: Hui Su --- arch/x86/include/asm/stacktrace.h | 3 --- arch/x86/kernel/dumpstack.c | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git