mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00
scsi: libfc: use configured rport E_D_TOV
If fc_rport_error_retry() is attempting to retry the remote port state we should be waiting for the configured e_d_tov value rather than the default. Signed-off-by: Hannes Reinecke <hare@suse.com> Acked-by: Johannes Thumshirn <jth@kernel.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
f7ce413cea
commit
a50cc9eccc
1 changed files with 1 additions and 1 deletions
|
@ -662,7 +662,7 @@ static void fc_rport_error(struct fc_rport_priv *rdata, struct fc_frame *fp)
|
|||
static void fc_rport_error_retry(struct fc_rport_priv *rdata,
|
||||
struct fc_frame *fp)
|
||||
{
|
||||
unsigned long delay = msecs_to_jiffies(FC_DEF_E_D_TOV);
|
||||
unsigned long delay = msecs_to_jiffies(rdata->e_d_tov);
|
||||
struct fc_lport *lport = rdata->local_port;
|
||||
|
||||
/* make sure this isn't an FC_EX_CLOSED error, never retry those */
|
||||
|
|
Loading…
Add table
Reference in a new issue