Home
last modified time | relevance | path

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

/openbmc/linux/drivers/scsi/libsas/
H A Dsas_scsi_host.c862 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()
[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.c63 task->slow_task->timer.function = sas_task_internal_timedout; in smp_execute_task_sg()
64 task->slow_task->timer.expires = jiffies + SMP_TIMEOUT*HZ; in smp_execute_task_sg()
65 add_timer(&task->slow_task->timer); in smp_execute_task_sg()
70 del_timer_sync(&task->slow_task->timer); in smp_execute_task_sg()
75 wait_for_completion(&task->slow_task->completion); in smp_execute_task_sg()
/openbmc/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.c2071 if (t->slow_task) in mpi_ssp_completion()
2072 complete(&t->slow_task->completion); in mpi_ssp_completion()
2657 if (t->slow_task) in mpi_sata_completion()
2658 complete(&t->slow_task->completion); in mpi_sata_completion()
/openbmc/linux/include/scsi/
H A Dlibsas.h598 struct sas_task_slow *slow_task; member