ANDROID: fiq_debugger: Pass task parameter to unwind_frame()

Fixes: fe13f95b7200 ("arm64: pass a task parameter to unwind_frame()")

Bug: 30369029
Patchset: rework-pagetable

Change-Id: I9a4ab50ef61532d27282f189f063c938c196ec08
Signed-off-by: Jeff Vander Stoep <jeffv@google.com>
This commit is contained in:
Jeff Vander Stoep 2016-09-18 21:39:28 -07:00 committed by Dmitry Shmidt
parent 5449876ad7
commit b7c491d2c4

View file

@ -197,6 +197,6 @@ void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output,
frame.sp = regs->sp; frame.sp = regs->sp;
frame.pc = regs->pc; frame.pc = regs->pc;
output->printf(output, "\n"); output->printf(output, "\n");
walk_stackframe(&frame, report_trace, &sts); walk_stackframe(current, &frame, report_trace, &sts);
} }
} }