diff --git a/src/profiling/perf/unwinding.cc b/src/profiling/perf/unwinding.cc index 78b0ff814b5..52b067e297e 100644 --- a/src/profiling/perf/unwinding.cc +++ b/src/profiling/perf/unwinding.cc @@ -526,6 +526,7 @@ std::vector Unwinder::SymbolizeKernelCallchain( unwindstack::FrameData& frame = ret.emplace_back(); frame.function_name = kernel_map->Lookup(ip); frame.map_info = kernel_map_info.ref(); + frame.rel_pc = ip; } return ret; }