Skip to content

Commit

Permalink
sh: Use the new stack unwinder API
Browse files Browse the repository at this point in the history
Instead of implementing our own stack unwinder via dump_trace() we
should use the new stack unwinder API because it is more modular. This
change allows us to decouple the interface for generating stacktraces
from the implementation of a stack unwinder.

Signed-off-by: Matt Fleming <matt@console-pimps.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Matt Fleming authored and Paul Mundt committed Aug 13, 2009
1 parent bf61ad1 commit 0eff9f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
17 changes: 6 additions & 11 deletions arch/sh/kernel/dumpstack.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <linux/kallsyms.h>
#include <linux/ftrace.h>
#include <linux/debug_locks.h>

#include <asm/unwinder.h>
#include <asm/stacktrace.h>

void printk_address(unsigned long address, int reliable)
Expand Down Expand Up @@ -46,13 +46,10 @@ print_ftrace_graph_addr(unsigned long addr, void *data,
{ }
#endif

/*
* Unwind the call stack and pass information to the stacktrace_ops
* functions.
*/
void dump_trace(struct task_struct *task, struct pt_regs *regs,
unsigned long *sp, const struct stacktrace_ops *ops,
void *data)
void
stack_reader_dump(struct task_struct *task, struct pt_regs *regs,
unsigned long *sp, const struct stacktrace_ops *ops,
void *data)
{
struct thread_info *context;
int graph = 0;
Expand All @@ -71,8 +68,6 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,
}
}
}
EXPORT_SYMBOL(dump_trace);


static void
print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
Expand Down Expand Up @@ -117,7 +112,7 @@ void show_trace(struct task_struct *tsk, unsigned long *sp,

printk("\nCall trace:\n");

dump_trace(tsk, regs, sp, &print_trace_ops, "");
unwind_stack(tsk, regs, sp, &print_trace_ops, "");

printk("\n");

Expand Down
5 changes: 3 additions & 2 deletions arch/sh/kernel/stacktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <linux/stacktrace.h>
#include <linux/thread_info.h>
#include <linux/module.h>
#include <asm/unwinder.h>
#include <asm/ptrace.h>
#include <asm/stacktrace.h>

Expand Down Expand Up @@ -57,7 +58,7 @@ void save_stack_trace(struct stack_trace *trace)
{
unsigned long *sp = (unsigned long *)current_stack_pointer;

dump_trace(current, NULL, sp, &save_stack_ops, trace);
unwind_stack(current, NULL, sp, &save_stack_ops, trace);
}
EXPORT_SYMBOL_GPL(save_stack_trace);

Expand Down Expand Up @@ -89,6 +90,6 @@ void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
{
unsigned long *sp = (unsigned long *)tsk->thread.sp;

dump_trace(current, NULL, sp, &save_stack_ops_nosched, trace);
unwind_stack(current, NULL, sp, &save_stack_ops_nosched, trace);
}
EXPORT_SYMBOL_GPL(save_stack_trace_tsk);
5 changes: 3 additions & 2 deletions arch/sh/oprofile/backtrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <linux/sched.h>
#include <linux/kallsyms.h>
#include <linux/mm.h>
#include <asm/unwinder.h>
#include <asm/ptrace.h>
#include <asm/uaccess.h>
#include <asm/sections.h>
Expand Down Expand Up @@ -120,8 +121,8 @@ void sh_backtrace(struct pt_regs * const regs, unsigned int depth)
stackaddr = (unsigned long *)regs->regs[15];
if (!user_mode(regs)) {
if (depth)
dump_trace(NULL, regs, stackaddr,
&backtrace_ops, &depth);
unwind_stack(NULL, regs, stackaddr,
&backtrace_ops, &depth);
return;
}

Expand Down

0 comments on commit 0eff9f6

Please sign in to comment.