diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-20 10:44:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-20 10:44:52 -0700 |
commit | f1877fb2967ec8c0c6e946cc24c253bb52ce4d06 (patch) | |
tree | 776d0ddf66155ac54b1f46e76f793a370da7dd2a /arch/mips/kernel/stacktrace.c | |
parent | b2ef7858db6394b758818358a43c7dd5f232bbcc (diff) | |
parent | d89e36d8df547fde2beaea82211954868da2282d (diff) | |
download | kernel-crypto-f1877fb2967ec8c0c6e946cc24c253bb52ce4d06.tar.gz kernel-crypto-f1877fb2967ec8c0c6e946cc24c253bb52ce4d06.tar.xz kernel-crypto-f1877fb2967ec8c0c6e946cc24c253bb52ce4d06.zip |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
[MIPS] Fix iounmap argument to const volatile.
[MIPS] Reserve syscall numbers for kexec_load.
[MIPS] Update tb0287_defconfig
[MIPS] Update pnx8550-v2pci_defconfig
[MIPS] Update pnx8500-jbs_defconfig
[MIPS] More vr41xx pt_regs fixups
[MIPS] save_context_stack fix
[MIPS] Use compat_sys_mount.
[MIPS] Fix O32 personality(2) call with 0xffffffff argument.
[MIPS] A few more pt_regs fixups.
[MIPS] Malta: Fix uninitialized regs pointer.
[MIPS] Delete unneeded pt_regs forward declaration.
[MIPS] Use kallsyms_lookup_size_offset() instead of kallsyms_lookup()
Diffstat (limited to 'arch/mips/kernel/stacktrace.c')
-rw-r--r-- | arch/mips/kernel/stacktrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/stacktrace.c b/arch/mips/kernel/stacktrace.c index 4aabe526a68..a586aba337a 100644 --- a/arch/mips/kernel/stacktrace.c +++ b/arch/mips/kernel/stacktrace.c @@ -57,7 +57,7 @@ static void save_context_stack(struct stack_trace *trace, pc = unwind_stack(task, &sp, pc, &ra); } while (pc); #else - save_raw_context_stack(sp); + save_raw_context_stack(trace, sp); #endif } |