Lines Matching refs:slow_task
862 del_timer(&task->slow_task->timer); in sas_task_internal_done()
863 complete(&task->slow_task->completion); in sas_task_internal_done()
881 complete(&task->slow_task->completion); in sas_task_internal_timedout()
904 task->slow_task->timer.function = sas_task_internal_timedout; in sas_execute_internal_abort()
905 task->slow_task->timer.expires = jiffies + TASK_TIMEOUT; in sas_execute_internal_abort()
906 add_timer(&task->slow_task->timer); in sas_execute_internal_abort()
914 del_timer_sync(&task->slow_task->timer); in sas_execute_internal_abort()
920 wait_for_completion(&task->slow_task->completion); in sas_execute_internal_abort()
1007 task->slow_task->timer.function = sas_task_internal_timedout; in sas_execute_tmf()
1008 task->slow_task->timer.expires = jiffies + TASK_TIMEOUT; in sas_execute_tmf()
1009 add_timer(&task->slow_task->timer); in sas_execute_tmf()
1013 del_timer_sync(&task->slow_task->timer); in sas_execute_tmf()
1019 wait_for_completion(&task->slow_task->completion); in sas_execute_tmf()
1179 struct sas_task_slow *slow = task->slow_task; in sas_task_abort()