Skip to content

Commit

Permalink
[MIPS] save_context_stack fix
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Atsushi Nemoto authored and Ralf Baechle committed Oct 19, 2006
1 parent 089c7e7 commit eea32d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/stacktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit eea32d4

Please sign in to comment.