Home
last modified time | relevance | path

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

/Linux-v6.6/drivers/scsi/libsas/
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 …]
Dsas_init.c51 task->slow_task = slow; in sas_alloc_slow_task()
62 kfree(task->slow_task); in sas_free_task()
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()
/Linux-v6.6/drivers/scsi/pm8001/
Dpm8001_sas.c1002 struct sas_task_slow slow_task; in pm8001_abort_task() local
1029 if (task->slow_task == NULL) { in pm8001_abort_task()
1030 init_completion(&slow_task.completion); in pm8001_abort_task()
1031 task->slow_task = &slow_task; in pm8001_abort_task()
1113 &task->slow_task->completion, in pm8001_abort_task()
1142 if (task->slow_task == &slow_task) in pm8001_abort_task()
1143 task->slow_task = NULL; in pm8001_abort_task()
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()
/Linux-v6.6/include/scsi/
Dlibsas.h598 struct sas_task_slow *slow_task; member