Home
last modified time | relevance | path

Searched refs:work_handle (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_osk_wq.c30 struct work_struct work_handle; member
114 INIT_WORK(&work->work_handle, _mali_osk_wq_work_func); in _mali_osk_wq_create_work()
129 INIT_WORK(&work->work_handle, _mali_osk_wq_work_func); in _mali_osk_wq_create_work_high_pri()
151 queue_work(mali_wq_normal, &work_object->work_handle); in _mali_osk_wq_schedule_work()
153 schedule_work(&work_object->work_handle); in _mali_osk_wq_schedule_work()
161 queue_work(mali_wq_high, &work_object->work_handle); in _mali_osk_wq_schedule_work_high_pri()
163 schedule_work(&work_object->work_handle); in _mali_osk_wq_schedule_work_high_pri()
171 work_object = _MALI_OSK_CONTAINER_OF(work, mali_osk_wq_work_object_t, work_handle); in _mali_osk_wq_work_func()
H A Dmali_dma_fence.c108 static void mali_dma_fence_context_work_func(struct work_struct *work_handle) in mali_dma_fence_context_work_func() argument
112 MALI_DEBUG_ASSERT_POINTER(work_handle); in mali_dma_fence_context_work_func()
114 dma_fence_context = container_of(work_handle, struct mali_dma_fence_context, work_handle); in mali_dma_fence_context_work_func()
139 schedule_work(&dma_fence_context->work_handle); in mali_dma_fence_callback()
268 INIT_WORK(&dma_fence_context->work_handle, mali_dma_fence_context_work_func); in mali_dma_fence_context_init()
346 if (dma_fence_context->work_handle.func) { in mali_dma_fence_context_term()
347 cancel_work_sync(&dma_fence_context->work_handle); in mali_dma_fence_context_term()
357 schedule_work(&dma_fence_context->work_handle); in mali_dma_fence_context_dec_count()
H A Dmali_dma_fence.h46 struct work_struct work_handle; member