Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e6fe4fb authored by Jeff Vander Stoep's avatar Jeff Vander Stoep Committed by Amit Pundir
Browse files

ANDROID: fiq_debugger: Pass task parameter to unwind_frame()



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

Bug: 30369029
Patchset: rework-pagetable

Change-Id: I9a4ab50ef61532d27282f189f063c938c196ec08
Signed-off-by: default avatarJeff Vander Stoep <jeffv@google.com>
parent 8d6d1480
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,6 +197,6 @@ void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output,
		frame.sp = regs->sp;
		frame.pc = regs->pc;
		output->printf(output, "\n");
		walk_stackframe(&frame, report_trace, &sts);
		walk_stackframe(current, &frame, report_trace, &sts);
	}
}