2 * Stack trace management functions
8 * TODO: Userspace stacktrace (CONFIG_USER_STACKTRACE_SUPPORT)
10 #include <linux/module.h>
11 #include <linux/stacktrace.h>
13 #include <asm/unwind.h>
15 static void dump_trace(struct task_struct *task, struct stack_trace *trace)
17 struct unwind_frame_info info;
19 unwind_frame_init_task(&info, task, NULL);
21 /* unwind stack and save entries in stack_trace struct */
22 trace->nr_entries = 0;
23 while (trace->nr_entries < trace->max_entries) {
24 if (unwind_once(&info) < 0 || info.ip == 0)
27 if (__kernel_text_address(info.ip))
28 trace->entries[trace->nr_entries++] = info.ip;
34 * Save stack-backtrace addresses into a stack_trace buffer.
36 void save_stack_trace(struct stack_trace *trace)
38 dump_trace(current, trace);
39 if (trace->nr_entries < trace->max_entries)
40 trace->entries[trace->nr_entries++] = ULONG_MAX;
42 EXPORT_SYMBOL_GPL(save_stack_trace);
44 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
46 dump_trace(tsk, trace);
47 if (trace->nr_entries < trace->max_entries)
48 trace->entries[trace->nr_entries++] = ULONG_MAX;
50 EXPORT_SYMBOL_GPL(save_stack_trace_tsk);