]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/sparc64/kernel/stacktrace.c
Merge branch 'sbp2-spindown' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee139...
[mirror_ubuntu-artful-kernel.git] / arch / sparc64 / kernel / stacktrace.c
CommitLineData
10e26723
DM
1#include <linux/sched.h>
2#include <linux/stacktrace.h>
3#include <linux/thread_info.h>
a05fe038 4#include <linux/module.h>
10e26723 5#include <asm/ptrace.h>
85a79353 6#include <asm/stacktrace.h>
10e26723 7
ab1b6f03 8void save_stack_trace(struct stack_trace *trace)
10e26723
DM
9{
10 unsigned long ksp, fp, thread_base;
ab1b6f03 11 struct thread_info *tp = task_thread_info(current);
10e26723 12
85a79353
DM
13 stack_trace_flush();
14
ab1b6f03
CH
15 __asm__ __volatile__(
16 "mov %%fp, %0"
17 : "=r" (ksp)
18 );
10e26723
DM
19
20 fp = ksp + STACK_BIAS;
21 thread_base = (unsigned long) tp;
22 do {
14d2c68b 23 struct sparc_stackf *sf;
77c664fa
DM
24 struct pt_regs *regs;
25 unsigned long pc;
10e26723
DM
26
27 /* Bogus frame pointer? */
28 if (fp < (thread_base + sizeof(struct thread_info)) ||
29 fp >= (thread_base + THREAD_SIZE))
30 break;
31
14d2c68b
DM
32 sf = (struct sparc_stackf *) fp;
33 regs = (struct pt_regs *) (sf + 1);
77c664fa
DM
34
35 if ((regs->magic & ~0x1ff) == PT_REGS_MAGIC) {
14d2c68b
DM
36 if (!(regs->tstate & TSTATE_PRIV))
37 break;
77c664fa
DM
38 pc = regs->tpc;
39 fp = regs->u_regs[UREG_I6] + STACK_BIAS;
40 } else {
14d2c68b
DM
41 pc = sf->callers_pc;
42 fp = (unsigned long)sf->fp + STACK_BIAS;
77c664fa
DM
43 }
44
10e26723
DM
45 if (trace->skip > 0)
46 trace->skip--;
47 else
77c664fa 48 trace->entries[trace->nr_entries++] = pc;
10e26723
DM
49 } while (trace->nr_entries < trace->max_entries);
50}
7b4c9505 51EXPORT_SYMBOL_GPL(save_stack_trace);