提交 351dd61c 编写于 作者: D Dmitry Safonov 提交者: Linus Torvalds

nios2: add show_stack_loglvl()

Currently, the log-level of show_stack() depends on a platform
realization.  It creates situations where the headers are printed with
lower log level or higher than the stacktrace (depending on a platform or
user).

Furthermore, it forces the logic decision from user to an architecture
side.  In result, some users as sysrq/kdb/etc are doing tricks with
temporary rising console_loglevel while printing their messages.  And in
result it not only may print unwanted messages from other CPUs, but also
omit printing at all in the unlucky case where the printk() was deferred.

Introducing log-level parameter and KERN_UNSUPPRESSED [1] seems an easier
approach than introducing more printk buffers.  Also, it will consolidate
printings with headers.

Introduce show_stack_loglvl(), that eventually will substitute
show_stack().

[1]: https://lore.kernel.org/lkml/20190528002412.1625-1-dima@arista.com/T/#uSigned-off-by: NDmitry Safonov <dima@arista.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Cc: Ley Foon Tan <lftan@altera.com>
Link: http://lkml.kernel.org/r/20200418201944.482088-24-dima@arista.comSigned-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 18a4753f
...@@ -52,12 +52,14 @@ void _exception(int signo, struct pt_regs *regs, int code, unsigned long addr) ...@@ -52,12 +52,14 @@ void _exception(int signo, struct pt_regs *regs, int code, unsigned long addr)
} }
/* /*
* The show_stack is an external API which we do not use ourselves. * The show_stack(), show_stack_loglvl() are external API
* which we do not use ourselves.
*/ */
int kstack_depth_to_print = 48; int kstack_depth_to_print = 48;
void show_stack(struct task_struct *task, unsigned long *stack) void show_stack_loglvl(struct task_struct *task, unsigned long *stack,
const char *loglvl)
{ {
unsigned long *endstack, addr; unsigned long *endstack, addr;
int i; int i;
...@@ -72,16 +74,16 @@ void show_stack(struct task_struct *task, unsigned long *stack) ...@@ -72,16 +74,16 @@ void show_stack(struct task_struct *task, unsigned long *stack)
addr = (unsigned long) stack; addr = (unsigned long) stack;
endstack = (unsigned long *) PAGE_ALIGN(addr); endstack = (unsigned long *) PAGE_ALIGN(addr);
pr_emerg("Stack from %08lx:", (unsigned long)stack); printk("%sStack from %08lx:", loglvl, (unsigned long)stack);
for (i = 0; i < kstack_depth_to_print; i++) { for (i = 0; i < kstack_depth_to_print; i++) {
if (stack + 1 > endstack) if (stack + 1 > endstack)
break; break;
if (i % 8 == 0) if (i % 8 == 0)
pr_emerg("\n "); printk("%s\n ", loglvl);
pr_emerg(" %08lx", *stack++); printk("%s %08lx", loglvl, *stack++);
} }
pr_emerg("\nCall Trace:"); printk("%s\nCall Trace:", loglvl);
i = 0; i = 0;
while (stack + 1 <= endstack) { while (stack + 1 <= endstack) {
addr = *stack++; addr = *stack++;
...@@ -97,11 +99,16 @@ void show_stack(struct task_struct *task, unsigned long *stack) ...@@ -97,11 +99,16 @@ void show_stack(struct task_struct *task, unsigned long *stack)
(addr <= (unsigned long) _etext))) { (addr <= (unsigned long) _etext))) {
if (i % 4 == 0) if (i % 4 == 0)
pr_emerg("\n "); pr_emerg("\n ");
pr_emerg(" [<%08lx>]", addr); printk("%s [<%08lx>]", loglvl, addr);
i++; i++;
} }
} }
pr_emerg("\n"); printk("%s\n", loglvl);
}
void show_stack(struct task_struct *task, unsigned long *stack)
{
show_stack_loglvl(task, stack, KERN_EMERG);
} }
void __init trap_init(void) void __init trap_init(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册