Message ID | e46e02f48567299b1176040961fec883e181b6ce.1621577151.git.naveen.n.rao@linux.vnet.ibm.com (mailing list archive) |
---|---|
State | RFC |
Headers | show |
Series | powerpc: Stack tracer fixes | expand |
Context | Check | Description |
---|---|---|
snowpatch_ozlabs/apply_patch | success | Successfully applied on branch powerpc/merge (258eb1f3aaa9face35e613c229c1337263491ea0) |
snowpatch_ozlabs/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 11 lines checked |
snowpatch_ozlabs/needsstable | success | Patch has no Fixes tags |
diff --git a/arch/powerpc/perf/callchain.c b/arch/powerpc/perf/callchain.c index 6c028ee513c0d7..ed4dd4ab6621f6 100644 --- a/arch/powerpc/perf/callchain.c +++ b/arch/powerpc/perf/callchain.c @@ -93,6 +93,11 @@ perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *re } perf_callchain_store(entry, next_ip); + if (level && next_ip) { + next_ip = ftrace_get_traced_func_if_no_stackframe(next_ip, fp); + if (next_ip) + perf_callchain_store(entry, next_ip); + } if (!valid_next_sp(next_sp, sp)) return; sp = next_sp;
With -mprofile-kernel and ppc32, the function tracer is invoked before a function sets up its own stackframe. This results in the traced function not appearing in stack traces. Fix this by checking for ftrace entry and including the traced function in the perf callchain. Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> --- arch/powerpc/perf/callchain.c | 5 +++++ 1 file changed, 5 insertions(+)