Home
last modified time | relevance | path

Searched refs:eh_timeout (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.15/drivers/scsi/
Dscsi_sysfs.c725 return snprintf(buf, 20, "%u\n", sdev->eh_timeout / HZ); in sdev_show_eh_timeout()
733 unsigned int eh_timeout; in sdev_store_eh_timeout() local
740 err = kstrtouint(buf, 10, &eh_timeout); in sdev_store_eh_timeout()
743 sdev->eh_timeout = eh_timeout * HZ; in sdev_store_eh_timeout()
747 static DEVICE_ATTR(eh_timeout, S_IRUGO | S_IWUSR, sdev_show_eh_timeout, sdev_store_eh_timeout);
Dscsi_error.c1179 return scsi_send_eh_cmnd(scmd, NULL, 0, scmd->device->eh_timeout, ~0); in scsi_request_sense()
1319 scmd->device->eh_timeout, 0); in scsi_eh_tur()
Dscsi_scan.c982 sdev->eh_timeout = SCSI_DEFAULT_EH_TIMEOUT; in scsi_add_lun()
Dhpsa.c2155 sdev->eh_timeout = HPSA_EH_PTRAID_TIMEOUT; in hpsa_slave_configure()
2160 sdev->eh_timeout = CTLR_TIMEOUT; in hpsa_slave_configure()
/Linux-v5.15/include/scsi/
Dscsi_device.h155 unsigned int eh_timeout; /* Error handling timeout */ member