blob: 7eaea9d02a526916d5df6379a54135f86223f354 [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>
9#include <linux/kallsyms.h>
10#include <linux/stacktrace.h>
11
12void print_stack_trace(struct stack_trace *trace, int spaces)
13{
Vegard Nossuma5a242d2008-06-13 11:00:14 +020014 int i;
Ingo Molnar8637c092006-07-03 00:24:38 -070015
Johannes Bergbfeeeeb2008-05-12 21:21:14 +020016 if (WARN_ON(!trace->entries))
17 return;
18
Ingo Molnar8637c092006-07-03 00:24:38 -070019 for (i = 0; i < trace->nr_entries; i++) {
Vegard Nossuma5a242d2008-06-13 11:00:14 +020020 printk("%*c", 1 + spaces, ' ');
21 print_ip_sym(trace->entries[i]);
Ingo Molnar8637c092006-07-03 00:24:38 -070022 }
23}
24