From: Joonbum Ko Date: Wed, 29 Nov 2023 07:11:37 +0000 (+0900) Subject: disable printing buffer list when flusher called X-Git-Tag: accepted/tizen/unified/20231205.024710~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1675916168ddeed886c5e497778f97af97ca087;p=platform%2Fcore%2Fuifw%2Flibtpl-egl.git disable printing buffer list when flusher called - Although this info logs are not absolutely necessary, it may cause a seg fault in some situations. - It must be modified later. Change-Id: Idfe95f940058ed194f7f62064ee767979e167dd7 Signed-off-by: Joonbum Ko --- diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index 4be7c44..cdfc538 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -1498,8 +1498,6 @@ static void __cb_tss_flusher_flush_callback(void *data, TPL_INFO("[BUFFER_FLUSH]", "wl_egl_surface(%p) tbm_queue(%p)", wl_egl_surface, wl_egl_surface->tbm_queue); - _print_buffer_lists(wl_egl_surface); - tsq_err = tbm_surface_queue_flush(wl_egl_surface->tbm_queue); if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { TPL_ERR("Failed to flush tbm_queue(%p)", wl_egl_surface->tbm_queue); @@ -1516,8 +1514,6 @@ static void __cb_tss_flusher_free_flush_callback(void *data, TPL_INFO("[FREE_BUFFER_FLUSH]", "wl_egl_surface(%p) tbm_queue(%p)", wl_egl_surface, wl_egl_surface->tbm_queue); - _print_buffer_lists(wl_egl_surface); - tsq_err = tbm_surface_queue_free_flush(wl_egl_surface->tbm_queue); if (tsq_err != TBM_SURFACE_QUEUE_ERROR_NONE) { TPL_ERR("Failed to free flush tbm_queue(%p)", wl_egl_surface->tbm_queue);