backtrace: replace timer with tasklet + completions
[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>
9#include <linux/kallsyms.h>
10#include <linux/stacktrace.h>
11
12void print_stack_trace(struct stack_trace *trace, int spaces)
13{
a5a242dc 14 int i;
8637c099 15
bfeeeeb9
JB
16 if (WARN_ON(!trace->entries))
17 return;
18
8637c099 19 for (i = 0; i < trace->nr_entries; i++) {
a5a242dc
VN
20 printk("%*c", 1 + spaces, ' ');
21 print_ip_sym(trace->entries[i]);
8637c099
IM
22 }
23}
24