aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel/stacktrace.c
diff options
context:
space:
mode:
authorTony Luck <tony.luck@intel.com>2010-09-23 16:52:07 -0400
committerTony Luck <tony.luck@intel.com>2010-09-23 16:52:07 -0400
commit85718fae2a8d845e66762e6464152a255e323777 (patch)
treee06745ac70e457517bf14a8b7f71e026989612b5 /arch/ia64/kernel/stacktrace.c
parent57aebd7739c8dbbf403876ee1e9673fafc83d856 (diff)
[IA64] Add CONFIG_STACKTRACE_SUPPORT
Several Linux features are dependent on stack trace support. Add it so they can be enabled. Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/stacktrace.c')
-rw-r--r--arch/ia64/kernel/stacktrace.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/arch/ia64/kernel/stacktrace.c b/arch/ia64/kernel/stacktrace.c
new file mode 100644
index 000000000000..5af2783a87f4
--- /dev/null
+++ b/arch/ia64/kernel/stacktrace.c
@@ -0,0 +1,39 @@
1/*
2 * arch/ia64/kernel/stacktrace.c
3 *
4 * Stack trace management functions
5 *
6 */
7#include <linux/sched.h>
8#include <linux/stacktrace.h>
9#include <linux/module.h>
10
11static void
12ia64_do_save_stack(struct unw_frame_info *info, void *arg)
13{
14 struct stack_trace *trace = arg;
15 unsigned long ip;
16 int skip = trace->skip;
17
18 trace->nr_entries = 0;
19 do {
20 unw_get_ip(info, &ip);
21 if (ip == 0)
22 break;
23 if (skip == 0) {
24 trace->entries[trace->nr_entries++] = ip;
25 if (trace->nr_entries == trace->max_entries)
26 break;
27 } else
28 skip--;
29 } while (unw_unwind(info) >= 0);
30}
31
32/*
33 * Save stack-backtrace addresses into a stack_trace buffer.
34 */
35void save_stack_trace(struct stack_trace *trace)
36{
37 unw_init_running(ia64_do_save_stack, trace);
38}
39EXPORT_SYMBOL(save_stack_trace);