aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_attr.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_attr.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
index 420238cc794..679a4326811 100644
--- a/drivers/scsi/qla2xxx/qla_attr.c
+++ b/drivers/scsi/qla2xxx/qla_attr.c
@@ -1530,6 +1530,15 @@ qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1530} 1530}
1531 1531
1532static void 1532static void
1533qla2x00_get_host_def_loss_tmo(struct Scsi_Host *shost)
1534{
1535 scsi_qla_host_t *vha = shost_priv(shost);
1536 struct qla_hw_data *ha = vha->hw;
1537
1538 fc_host_def_dev_loss_tmo(shost) = ha->port_down_retry_count;
1539}
1540
1541static void
1533qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport) 1542qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1534{ 1543{
1535 struct Scsi_Host *host = rport_to_shost(rport); 1544 struct Scsi_Host *host = rport_to_shost(rport);
@@ -1903,6 +1912,7 @@ struct fc_function_template qla2xxx_transport_functions = {
1903 .show_host_fabric_name = 1, 1912 .show_host_fabric_name = 1,
1904 .get_host_port_state = qla2x00_get_host_port_state, 1913 .get_host_port_state = qla2x00_get_host_port_state,
1905 .show_host_port_state = 1, 1914 .show_host_port_state = 1,
1915 .get_host_def_dev_loss_tmo = qla2x00_get_host_def_loss_tmo,
1906 1916
1907 .dd_fcrport_size = sizeof(struct fc_port *), 1917 .dd_fcrport_size = sizeof(struct fc_port *),
1908 .show_rport_supported_classes = 1, 1918 .show_rport_supported_classes = 1,
@@ -1949,6 +1959,7 @@ struct fc_function_template qla2xxx_transport_vport_functions = {
1949 .show_host_fabric_name = 1, 1959 .show_host_fabric_name = 1,
1950 .get_host_port_state = qla2x00_get_host_port_state, 1960 .get_host_port_state = qla2x00_get_host_port_state,
1951 .show_host_port_state = 1, 1961 .show_host_port_state = 1,
1962 .get_host_def_dev_loss_tmo = qla2x00_get_host_def_loss_tmo,
1952 1963
1953 .dd_fcrport_size = sizeof(struct fc_port *), 1964 .dd_fcrport_size = sizeof(struct fc_port *),
1954 .show_rport_supported_classes = 1, 1965 .show_rport_supported_classes = 1,