Home
last modified time | relevance | path

Searched refs:ehandler (Results 1 – 7 of 7) sorted by relevance

/linux-4.4.14/drivers/scsi/
Dhosts.c325 if (shost->ehandler) in scsi_host_dev_release()
326 kthread_stop(shost->ehandler); in scsi_host_dev_release()
492 shost->ehandler = kthread_run(scsi_error_handler, shost, in scsi_host_alloc()
494 if (IS_ERR(shost->ehandler)) { in scsi_host_alloc()
497 PTR_ERR(shost->ehandler)); in scsi_host_alloc()
513 kthread_stop(shost->ehandler); in scsi_host_alloc()
Dscsi_error.c67 wake_up_process(shost->ehandler); in scsi_eh_wakeup()
237 if (!shost->ehandler) in scsi_eh_scmd_add()
2246 shost->ehandler = NULL; in scsi_error_handler()
/linux-4.4.14/drivers/hsi/
Dhsi.c663 (*cl->ehandler)(cl, event); in hsi_event_notifier_call()
685 if (!handler || cl->ehandler) in hsi_register_port_event()
689 cl->ehandler = handler; in hsi_register_port_event()
714 cl->ehandler = NULL; in hsi_unregister_port_event()
/linux-4.4.14/include/linux/hsi/
Dhsi.h147 void (*ehandler)(struct hsi_client *, unsigned long); member
/linux-4.4.14/drivers/scsi/libsas/
Dsas_scsi_host.c494 if (current != host->ehandler) in sas_eh_abort_handler()
517 if (current != host->ehandler) in sas_eh_device_reset_handler()
539 if (current != host->ehandler) in sas_eh_bus_reset_handler()
/linux-4.4.14/include/scsi/
Dscsi_host.h560 struct task_struct * ehandler; /* Error recovery thread. */ member
/linux-4.4.14/drivers/infiniband/ulp/srp/
Dib_srp.c2050 const bool in_scsi_eh = !in_interrupt() && current == shost->ehandler; in srp_queuecommand()