Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/scsi/
H A Dscsi_sysfs.c724 return snprintf(buf, 20, "%u\n", sdev->eh_timeout / HZ); in sdev_show_eh_timeout()
732 unsigned int eh_timeout; in sdev_store_eh_timeout() local
739 err = kstrtouint(buf, 10, &eh_timeout); in sdev_store_eh_timeout()
742 sdev->eh_timeout = eh_timeout * HZ; in sdev_store_eh_timeout()
746 static DEVICE_ATTR(eh_timeout, S_IRUGO | S_IWUSR, sdev_show_eh_timeout, sdev_store_eh_timeout);
H A Dscsi_error.c1173 return scsi_send_eh_cmnd(scmd, NULL, 0, scmd->device->eh_timeout, ~0); in scsi_request_sense()
1311 scmd->device->eh_timeout, 0); in scsi_eh_tur()
H A Dscsi_scan.c955 sdev->eh_timeout = SCSI_DEFAULT_EH_TIMEOUT; in scsi_add_lun()
H A Dhpsa.c2153 sdev->eh_timeout = HPSA_EH_PTRAID_TIMEOUT; in hpsa_slave_configure()
2158 sdev->eh_timeout = CTLR_TIMEOUT; in hpsa_slave_configure()
/OK3568_Linux_fs/kernel/include/scsi/
H A Dscsi_device.h155 unsigned int eh_timeout; /* Error handling timeout */ member