1 #include <linux/sched.h>
2 #include <linux/stacktrace.h>
3 #include <linux/thread_info.h>
4 #include <linux/module.h>
5 #include <asm/ptrace.h>
6 #include <asm/stacktrace.h>
8 void save_stack_trace(struct stack_trace *trace)
10 unsigned long ksp, fp, thread_base;
11 struct thread_info *tp = task_thread_info(current);
20 fp = ksp + STACK_BIAS;
21 thread_base = (unsigned long) tp;
23 struct sparc_stackf *sf;
27 /* Bogus frame pointer? */
28 if (fp < (thread_base + sizeof(struct thread_info)) ||
29 fp > (thread_base + THREAD_SIZE - sizeof(struct sparc_stackf)))
32 sf = (struct sparc_stackf *) fp;
33 regs = (struct pt_regs *) (sf + 1);
35 if (((unsigned long)regs <=
36 (thread_base + THREAD_SIZE - sizeof(*regs))) &&
37 (regs->magic & ~0x1ff) == PT_REGS_MAGIC) {
38 if (!(regs->tstate & TSTATE_PRIV))
41 fp = regs->u_regs[UREG_I6] + STACK_BIAS;
44 fp = (unsigned long)sf->fp + STACK_BIAS;
50 trace->entries[trace->nr_entries++] = pc;
51 } while (trace->nr_entries < trace->max_entries);
53 EXPORT_SYMBOL_GPL(save_stack_trace);