blob: 0914d0cbc83c9f48496b927602d87e6293d4530a [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{
14 int i, j;
15
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++) {
20 unsigned long ip = trace->entries[i];
21
22 for (j = 0; j < spaces + 1; j++)
23 printk(" ");
24 print_ip_sym(ip);
25 }
26}
27