aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2006-10-16 22:48:49 +0900
committerRalf Baechle <ralf@linux-mips.org>2006-10-19 17:55:13 +0100
commiteea32d4c6e272b6c324c8c22df4c28274fcb5a21 (patch)
treeb10d36470b54faa0a163fc566d3435221a37a640 /arch/mips/kernel
parent[MIPS] Use compat_sys_mount. (diff)
downloadlinux-dev-eea32d4c6e272b6c324c8c22df4c28274fcb5a21.tar.xz
linux-dev-eea32d4c6e272b6c324c8c22df4c28274fcb5a21.zip
[MIPS] save_context_stack fix
CONFIG_KALLSYMS=n case is obviously wrong, though it is harmless since CONFIG_KALLSYMS is always enabled with CONFIG_STACKTRACE for now. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r--arch/mips/kernel/stacktrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/stacktrace.c b/arch/mips/kernel/stacktrace.c
index 4aabe526a68e..a586aba337a7 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
}