Commit c5fccebc authored by Max Filippov's avatar Max Filippov

xtensa: improve stack dumping

Calculate printable stack size and use print_hex_dump instead of
opencoding it.
Drop extra newline output in show_trace as its output format does not
depend on CONFIG_KALLSYMS.
Reviewed-by: default avatarPetr Mladek <pmladek@suse.com>
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent 5eff6ca2
...@@ -491,32 +491,27 @@ void show_trace(struct task_struct *task, unsigned long *sp) ...@@ -491,32 +491,27 @@ void show_trace(struct task_struct *task, unsigned long *sp)
pr_info("Call Trace:\n"); pr_info("Call Trace:\n");
walk_stackframe(sp, show_trace_cb, NULL); walk_stackframe(sp, show_trace_cb, NULL);
#ifndef CONFIG_KALLSYMS
pr_cont("\n");
#endif
} }
static int kstack_depth_to_print = 24; #define STACK_DUMP_ENTRY_SIZE 4
#define STACK_DUMP_LINE_SIZE 32
static size_t kstack_depth_to_print = 24;
void show_stack(struct task_struct *task, unsigned long *sp) void show_stack(struct task_struct *task, unsigned long *sp)
{ {
int i = 0; size_t len;
unsigned long *stack;
if (!sp) if (!sp)
sp = stack_pointer(task); sp = stack_pointer(task);
stack = sp;
pr_info("Stack:\n"); len = min((-(size_t)sp) & (THREAD_SIZE - STACK_DUMP_ENTRY_SIZE),
kstack_depth_to_print * STACK_DUMP_ENTRY_SIZE);
for (i = 0; i < kstack_depth_to_print; i++) { pr_info("Stack:\n");
if (kstack_end(sp)) print_hex_dump(KERN_INFO, " ", DUMP_PREFIX_NONE,
break; STACK_DUMP_LINE_SIZE, STACK_DUMP_ENTRY_SIZE,
pr_cont(" %08lx", *sp++); sp, len, false);
if (i % 8 == 7) show_trace(task, sp);
pr_cont("\n");
}
show_trace(task, stack);
} }
DEFINE_SPINLOCK(die_lock); DEFINE_SPINLOCK(die_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment