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-11-18 23:36:20 +0000
commit28c21c69d6a019dbea8c2087a97f04dd79a9b514 (patch)
treec13964353ec4b6d4c8dfa35bece52847b043e8a6
parent6fcf6a551bfacc655f095897b1c7838022387575 (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> Change-Id: I5ed05d0f5aa4c5e98fbd9b5275f3db39ccb76fed Merged-In: I5ed05d0f5aa4c5e98fbd9b5275f3db39ccb76fed
-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 d4d32aa37a..b85086763b 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -2580,7 +2580,7 @@ bool SurfaceFlinger::updateLayerSnapshots(VsyncId vsyncId, nsecs_t frameTimeNs,
}
{
- ATRACE_NAME("LLM:commitChanges");
+ ATRACE_NAME("LayerLifecycleManager:commitChanges");
mLayerLifecycleManager.commitChanges();
}