Linux 2.6.28
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / stacktrace.c
CommitLineData
8637c099
IM
1/*
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>
8594698e 9#include <linux/module.h>
8637c099
IM
10#include <linux/kallsyms.h>
11#include <linux/stacktrace.h>
12
13void print_stack_trace(struct stack_trace *trace, int spaces)
14{
a5a242dc 15 int i;
8637c099 16
bfeeeeb9
JB
17 if (WARN_ON(!trace->entries))
18 return;
19
8637c099 20 for (i = 0; i < trace->nr_entries; i++) {
a5a242dc
VN
21 printk("%*c", 1 + spaces, ' ');
22 print_ip_sym(trace->entries[i]);
8637c099
IM
23 }
24}
8594698e 25EXPORT_SYMBOL_GPL(print_stack_trace);
8637c099 26