Lines Matching refs:sync_file
45 void sync_file_debug_add(struct sync_file *sync_file) in sync_file_debug_add() argument
50 list_add_tail(&sync_file->sync_file_list, &sync_file_list_head); in sync_file_debug_add()
54 void sync_file_debug_remove(struct sync_file *sync_file) in sync_file_debug_remove() argument
59 list_del(&sync_file->sync_file_list); in sync_file_debug_remove()
131 struct sync_file *sync_file) in sync_print_sync_file() argument
136 seq_printf(s, "[%p] %s: %s\n", sync_file, in sync_print_sync_file()
137 sync_file_get_name(sync_file, buf, sizeof(buf)), in sync_print_sync_file()
138 sync_status_str(dma_fence_get_status(sync_file->fence))); in sync_print_sync_file()
140 if (dma_fence_is_array(sync_file->fence)) { in sync_print_sync_file()
141 struct dma_fence_array *array = to_dma_fence_array(sync_file->fence); in sync_print_sync_file()
146 sync_print_fence(s, sync_file->fence, true); in sync_print_sync_file()
171 struct sync_file *sync_file = in sync_debugfs_show() local
172 container_of(pos, struct sync_file, sync_file_list); in sync_debugfs_show()
174 sync_print_sync_file(s, sync_file); in sync_debugfs_show()