4 * Stack trace management functions
6 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 #include <linux/sched.h>
9 #include <linux/kernel.h>
10 #include <linux/export.h>
11 #include <linux/kallsyms.h>
12 #include <linux/stacktrace.h>
14 void print_stack_trace(struct stack_trace *trace, int spaces)
18 if (WARN_ON(!trace->entries))
21 for (i = 0; i < trace->nr_entries; i++)
22 printk("%*c%pS\n", 1 + spaces, ' ', (void *)trace->entries[i]);
24 EXPORT_SYMBOL_GPL(print_stack_trace);
26 int snprint_stack_trace(char *buf, size_t size,
27 struct stack_trace *trace, int spaces)
33 if (WARN_ON(!trace->entries))
36 for (i = 0; i < trace->nr_entries; i++) {
37 generated = snprintf(buf, size, "%*c%pS\n", 1 + spaces, ' ',
38 (void *)trace->entries[i]);
42 /* Assume that generated isn't a negative number */
43 if (generated >= size) {
54 EXPORT_SYMBOL_GPL(snprint_stack_trace);
57 * Architectures that do not implement save_stack_trace_tsk or
58 * save_stack_trace_regs get this weak alias and a once-per-bootup warning
59 * (whenever this facility is utilized - for example by procfs):
62 save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
64 WARN_ONCE(1, KERN_INFO "save_stack_trace_tsk() not implemented yet.\n");
68 save_stack_trace_regs(struct pt_regs *regs, struct stack_trace *trace)
70 WARN_ONCE(1, KERN_INFO "save_stack_trace_regs() not implemented yet.\n");