Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From 903ea9827f790547e041bc22a000e139e067220d Mon Sep 17 00:00:00 2001
From: "Chen, Tianmi" <tianmi.chen@intel.com>
Date: Tue, 9 Sep 2025 16:31:10 +0800
Subject: [PATCH] Fixed the crash message while performing perfetto

Tracked-On:
Signed-off-by: Chen, Tianmi <tianmi.chen@intel.com>
---
src/traced/probes/ftrace/proto_translation_table.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/traced/probes/ftrace/proto_translation_table.cc b/src/traced/probes/ftrace/proto_translation_table.cc
index 90aed246dc..f9e6f8f5d9 100644
--- a/src/traced/probes/ftrace/proto_translation_table.cc
+++ b/src/traced/probes/ftrace/proto_translation_table.cc
@@ -124,7 +124,7 @@ bool MergeFieldInfo(const FtraceEvent::Field& ftrace_field,

if (!InferFtraceType(ftrace_field.type_and_name, ftrace_field.size,
ftrace_field.is_signed, &field->ftrace_type)) {
- PERFETTO_FATAL(
+ PERFETTO_DLOG(
"Failed to infer ftrace field type for \"%s.%s\" (type:\"%s\" "
"size:%d "
"signed:%d)",
--
2.17.1