kernel: rename show_stack_loglvl() => show_stack()
Now the last users of show_stack() got converted to use an explicit log level, show_stack_loglvl() can drop it's redundant suffix and become once again well known show_stack(). Signed-off-by: Dmitry Safonov <dima@arista.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Link: http://lkml.kernel.org/r/20200418201944.482088-51-dima@arista.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
fe1993a001
commit
9cb8f069de
@@ -916,7 +916,7 @@ void show_registers(struct pt_regs *regs)
|
||||
default:
|
||||
pr_cont("\n");
|
||||
}
|
||||
show_stack(NULL, (unsigned long *)addr);
|
||||
show_stack(NULL, (unsigned long *)addr, KERN_INFO);
|
||||
|
||||
pr_info("Code:");
|
||||
set_fs(KERNEL_DS);
|
||||
@@ -935,8 +935,8 @@ void show_registers(struct pt_regs *regs)
|
||||
pr_cont("\n");
|
||||
}
|
||||
|
||||
void show_stack_loglvl(struct task_struct *task, unsigned long *stack,
|
||||
const char *loglvl)
|
||||
void show_stack(struct task_struct *task, unsigned long *stack,
|
||||
const char *loglvl)
|
||||
{
|
||||
unsigned long *p;
|
||||
unsigned long *endstack;
|
||||
@@ -963,11 +963,6 @@ void show_stack_loglvl(struct task_struct *task, unsigned long *stack,
|
||||
show_trace(stack, loglvl);
|
||||
}
|
||||
|
||||
void show_stack(struct task_struct *task, unsigned long *stack)
|
||||
{
|
||||
show_stack_loglvl(task, stack, KERN_INFO);
|
||||
}
|
||||
|
||||
/*
|
||||
* The vector number returned in the frame pointer may also contain
|
||||
* the "fs" (Fault Status) bits on ColdFire. These are in the bottom
|
||||
|
Reference in New Issue
Block a user