summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Shuangxi Xiang <xiangshuangxi@xiaomi.corp-partner.google.com> 2024-11-12 02:06:21 +0000
committer Sally Qi <sallyqi@google.com> 2024-12-02 05:17:46 +0000
commitc07a0541f9e044e39355ab3cdfca27aa6a7324ab (patch)
tree67644d83efe6d3cca0ad1d236c8c6fabf41a500c
parent8c297a8694b6a2e06da1519302012530857ddc7f (diff)
Complete the trace information LLM to LayerLifecycleManager
When analyzing the trace of performance issues, the LLM-related information in the LLM:commitChanges time consumption is unclear to newcomers or non-professionals. It is recommended to complete LLM with LayerLifecycleManager, which can make it clear to the person analyzing the trace and reduce the time loss of searching in the source code. Signed-off-by: Shuangxi Xiang <xiangshuangxi@xiaomi.corp-partner.google.com> Test: builds Bug: n/a Flag: EXEMPT trace name fix Change-Id: I5ed05d0f5aa4c5e98fbd9b5275f3db39ccb76fed Merged-In: I5ed05d0f5aa4c5e98fbd9b5275f3db39ccb76fed (cherry picked from commit daa1cab22dc0f1e7cd4ca29f089a49b57e15ee24)
-rw-r--r--services/surfaceflinger/SurfaceFlinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp
index 65a0ed3065..ce1a0f3b70 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -2524,7 +2524,7 @@ bool SurfaceFlinger::updateLayerSnapshots(VsyncId vsyncId, nsecs_t frameTimeNs,
}
{
- SFTRACE_NAME("LLM:commitChanges");
+ SFTRACE_NAME("LayerLifecycleManager:commitChanges");
mLayerLifecycleManager.commitChanges();
}