aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libfc/fc_lport.c
diff options
context:
space:
mode:
authorJoe Eykholt <jeykholt@cisco.com>2009-11-03 14:50:21 -0500
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:01:27 -0500
commitb94f8951bf256674eca3f2a490df17521442afef (patch)
treeae6b246eb65f7ef73167a2b582ce7e670158a958 /drivers/scsi/libfc/fc_lport.c
parentbe276cbe1bd680ab1f6c297017dd658e5a6b10d2 (diff)
[SCSI] libfc fcoe: increase ELS and CT timeouts
The FC-LS spec. says ELS timeouts should be 2 x R_A_TOV. The FC-GS spec. says CT timeouts should be 3 x R_A_TOV. We've been using E_D_TOV for both of those. Change for all ELS and CT requests except FLOGI, which we leave at 2 seconds (using E_D_TOV). One could argue that R_A_TOV is locally determined until after FLOGI succeeds. This does change FLOGI for vports which becomes FDISC. This does not change the REC/SRR timeout which is 2 seconds. Signed-off-by: Joe Eykholt <jeykholt@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc/fc_lport.c')
-rw-r--r--drivers/scsi/libfc/fc_lport.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c
index 1bcc5e11d2c0..c841d547c298 100644
--- a/drivers/scsi/libfc/fc_lport.c
+++ b/drivers/scsi/libfc/fc_lport.c
@@ -1191,7 +1191,8 @@ static void fc_lport_enter_scr(struct fc_lport *lport)
1191 } 1191 }
1192 1192
1193 if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR, 1193 if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR,
1194 fc_lport_scr_resp, lport, lport->e_d_tov)) 1194 fc_lport_scr_resp, lport,
1195 2 * lport->r_a_tov))
1195 fc_lport_error(lport, NULL); 1196 fc_lport_error(lport, NULL);
1196} 1197}
1197 1198
@@ -1257,7 +1258,7 @@ static void fc_lport_enter_ns(struct fc_lport *lport, enum fc_lport_state state)
1257 1258
1258 if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd, 1259 if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd,
1259 fc_lport_ns_resp, 1260 fc_lport_ns_resp,
1260 lport, lport->e_d_tov)) 1261 lport, 3 * lport->r_a_tov))
1261 fc_lport_error(lport, fp); 1262 fc_lport_error(lport, fp);
1262} 1263}
1263 1264
@@ -1414,7 +1415,8 @@ static void fc_lport_enter_logo(struct fc_lport *lport)
1414 } 1415 }
1415 1416
1416 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO, 1417 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO,
1417 fc_lport_logo_resp, lport, lport->e_d_tov)) 1418 fc_lport_logo_resp, lport,
1419 2 * lport->r_a_tov))
1418 fc_lport_error(lport, NULL); 1420 fc_lport_error(lport, NULL);
1419} 1421}
1420 1422
@@ -1534,7 +1536,9 @@ void fc_lport_enter_flogi(struct fc_lport *lport)
1534 1536
1535 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, 1537 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp,
1536 lport->vport ? ELS_FDISC : ELS_FLOGI, 1538 lport->vport ? ELS_FDISC : ELS_FLOGI,
1537 fc_lport_flogi_resp, lport, lport->e_d_tov)) 1539 fc_lport_flogi_resp, lport,
1540 lport->vport ? 2 * lport->r_a_tov :
1541 lport->e_d_tov))
1538 fc_lport_error(lport, NULL); 1542 fc_lport_error(lport, NULL);
1539} 1543}
1540 1544