diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-10-16 09:48:49 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-19 12:55:13 -0400 |
commit | eea32d4c6e272b6c324c8c22df4c28274fcb5a21 (patch) | |
tree | b10d36470b54faa0a163fc566d3435221a37a640 /arch | |
parent | 089c7e7f2da7c3245de47377252683bd9edae738 (diff) |
[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')
-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 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, | |||
57 | pc = unwind_stack(task, &sp, pc, &ra); | 57 | pc = unwind_stack(task, &sp, pc, &ra); |
58 | } while (pc); | 58 | } while (pc); |
59 | #else | 59 | #else |
60 | save_raw_context_stack(sp); | 60 | save_raw_context_stack(trace, sp); |
61 | #endif | 61 | #endif |
62 | } | 62 | } |
63 | 63 | ||