blob: eb212f8f8bc801dab1ee7622936ba8caaec4369f [file] [log] [blame]
Ingo Molnar8637c092006-07-03 00:24:38 -07001/*
2 * kernel/stacktrace.c
3 *
4 * Stack trace management functions
5 *
6 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
7 */
8#include <linux/sched.h>
Ingo Molnar9212ddb2008-12-25 11:21:20 +01009#include <linux/kernel.h>
Ingo Molnar85946982008-06-27 21:20:17 +020010#include <linux/module.h>
Ingo Molnar8637c092006-07-03 00:24:38 -070011#include <linux/kallsyms.h>
12#include <linux/stacktrace.h>
13
14void print_stack_trace(struct stack_trace *trace, int spaces)
15{
Vegard Nossuma5a242d2008-06-13 11:00:14 +020016 int i;
Ingo Molnar8637c092006-07-03 00:24:38 -070017
Johannes Bergbfeeeeb2008-05-12 21:21:14 +020018 if (WARN_ON(!trace->entries))
19 return;
20
Ingo Molnar8637c092006-07-03 00:24:38 -070021 for (i = 0; i < trace->nr_entries; i++) {
Vegard Nossuma5a242d2008-06-13 11:00:14 +020022 printk("%*c", 1 + spaces, ' ');
23 print_ip_sym(trace->entries[i]);
Ingo Molnar8637c092006-07-03 00:24:38 -070024 }
25}
Ingo Molnar85946982008-06-27 21:20:17 +020026EXPORT_SYMBOL_GPL(print_stack_trace);
Ingo Molnar8637c092006-07-03 00:24:38 -070027
Ingo Molnar9212ddb2008-12-25 11:21:20 +010028/*
29 * Architectures that do not implement save_stack_trace_tsk get this
30 * weak alias and a once-per-bootup warning (whenever this facility
31 * is utilized - for example by procfs):
32 */
33__weak void
34save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
35{
36 WARN_ONCE(1, KERN_INFO "save_stack_trace_tsk() not implemented yet.\n");
37}