Lines Matching refs:slow_task
863 del_timer(&task->slow_task->timer); in sas_task_internal_done()
864 complete(&task->slow_task->completion); in sas_task_internal_done()
882 complete(&task->slow_task->completion); in sas_task_internal_timedout()
905 task->slow_task->timer.function = sas_task_internal_timedout; in sas_execute_internal_abort()
906 task->slow_task->timer.expires = jiffies + TASK_TIMEOUT; in sas_execute_internal_abort()
907 add_timer(&task->slow_task->timer); in sas_execute_internal_abort()
915 del_timer_sync(&task->slow_task->timer); in sas_execute_internal_abort()
921 wait_for_completion(&task->slow_task->completion); in sas_execute_internal_abort()
1008 task->slow_task->timer.function = sas_task_internal_timedout; in sas_execute_tmf()
1009 task->slow_task->timer.expires = jiffies + TASK_TIMEOUT; in sas_execute_tmf()
1010 add_timer(&task->slow_task->timer); in sas_execute_tmf()
1014 del_timer_sync(&task->slow_task->timer); in sas_execute_tmf()
1020 wait_for_completion(&task->slow_task->completion); in sas_execute_tmf()
1180 struct sas_task_slow *slow = task->slow_task; in sas_task_abort()