stacktrace: print_stack_trace() cleanup
[linux-2.6/x86.git] / kernel / stacktrace.c
blob7eaea9d02a526916d5df6379a54135f86223f354
1 /*
2 * kernel/stacktrace.c
4 * Stack trace management functions
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>
12 void print_stack_trace(struct stack_trace *trace, int spaces)
14 int i;
16 if (WARN_ON(!trace->entries))
17 return;
19 for (i = 0; i < trace->nr_entries; i++) {
20 printk("%*c", 1 + spaces, ' ');
21 print_ip_sym(trace->entries[i]);