Home
last modified time | relevance | path

Searched refs:slow_task (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/scsi/libsas/
H A Dsas_scsi_host.c863 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()
[all …]
H A Dsas_init.c51 task->slow_task = slow; in sas_alloc_slow_task()
62 kfree(task->slow_task); in sas_free_task()
H A Dsas_expander.c85 task->slow_task->timer.function = sas_task_internal_timedout; in smp_execute_task_sg()
86 task->slow_task->timer.expires = jiffies + SMP_TIMEOUT*HZ; in smp_execute_task_sg()
87 add_timer(&task->slow_task->timer); in smp_execute_task_sg()
92 del_timer_sync(&task->slow_task->timer); in smp_execute_task_sg()
97 wait_for_completion(&task->slow_task->completion); in smp_execute_task_sg()
/linux/drivers/scsi/pm8001/
H A Dpm8001_sas.c1004 struct sas_task_slow slow_task; in pm8001_abort_task() local
1031 if (task->slow_task == NULL) { in pm8001_abort_task()
1032 init_completion(&slow_task.completion); in pm8001_abort_task()
1033 task->slow_task = &slow_task; in pm8001_abort_task()
1115 &task->slow_task->completion, in pm8001_abort_task()
1144 if (task->slow_task == &slow_task) in pm8001_abort_task()
1145 task->slow_task = NULL; in pm8001_abort_task()
H A Dpm80xx_hwi.c2051 if (t->slow_task) in mpi_ssp_completion()
2052 complete(&t->slow_task->completion); in mpi_ssp_completion()
2637 if (t->slow_task) in mpi_sata_completion()
2638 complete(&t->slow_task->completion); in mpi_sata_completion()
/linux/include/scsi/
H A Dlibsas.h596 struct sas_task_slow *slow_task; member