Commit eea32d4c6e272b6c324c8c22df4c28274fcb5a21

Authored by Atsushi Nemoto
Committed by Ralf Baechle
1 parent 089c7e7f2d

[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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/mips/kernel/stacktrace.c
... ... @@ -57,7 +57,7 @@
57 57 pc = unwind_stack(task, &sp, pc, &ra);
58 58 } while (pc);
59 59 #else
60   - save_raw_context_stack(sp);
  60 + save_raw_context_stack(trace, sp);
61 61 #endif
62 62 }
63 63