Commit 9a1a69a1 authored by Andrew Vasquez's avatar Andrew Vasquez Committed by James Bottomley

[SCSI] fc-transport: Close state transition-window during rport deletion.

Andrew Vasquez wrote:
> fc-transport: Close state transition-window during rport deletion.
>
> After an rport's state has transitioned to FC_PORTSTATE_BLOCKED,
> but, prior to making the upcall to 'block' the scsi-target
> associated with an rport, queued commands can recycle and
> ultimately run out of retries causing failures to propagate to
> upper-level drivers.  Close this transition-window by returning
> the non-'retries' modifying DID_IMM_RETRY status for submitted
> I/Os.

The same can happen for iscsi when transitioning from logged in
to failed and blocking the sdevs.

This patch converts iscsi and fc's transitions back to use DID_IMM_RETRY
instead of DID_TRANSPORT_DISRUPTED which has a limited number of retries
that we do not want to use for handling this race.
Signed-off-by: default avatarAndrew Vasquez <andrew.vasquez@qlogic.com>
[Addition of iscsi and fc port online devloss case conversion by Mike Christie]
Signed-off-by: default avatarMike Christie <michaelc@cs.wisc.edu>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent c53a284f
...@@ -357,7 +357,7 @@ int iscsi_session_chkready(struct iscsi_cls_session *session) ...@@ -357,7 +357,7 @@ int iscsi_session_chkready(struct iscsi_cls_session *session)
err = 0; err = 0;
break; break;
case ISCSI_SESSION_FAILED: case ISCSI_SESSION_FAILED:
err = DID_TRANSPORT_DISRUPTED << 16; err = DID_IMM_RETRY << 16;
break; break;
case ISCSI_SESSION_FREE: case ISCSI_SESSION_FREE:
err = DID_TRANSPORT_FAILFAST << 16; err = DID_TRANSPORT_FAILFAST << 16;
......
...@@ -680,7 +680,7 @@ fc_remote_port_chkready(struct fc_rport *rport) ...@@ -680,7 +680,7 @@ fc_remote_port_chkready(struct fc_rport *rport)
if (rport->roles & FC_PORT_ROLE_FCP_TARGET) if (rport->roles & FC_PORT_ROLE_FCP_TARGET)
result = 0; result = 0;
else if (rport->flags & FC_RPORT_DEVLOSS_PENDING) else if (rport->flags & FC_RPORT_DEVLOSS_PENDING)
result = DID_TRANSPORT_DISRUPTED << 16; result = DID_IMM_RETRY << 16;
else else
result = DID_NO_CONNECT << 16; result = DID_NO_CONNECT << 16;
break; break;
...@@ -688,7 +688,7 @@ fc_remote_port_chkready(struct fc_rport *rport) ...@@ -688,7 +688,7 @@ fc_remote_port_chkready(struct fc_rport *rport)
if (rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT) if (rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT)
result = DID_TRANSPORT_FAILFAST << 16; result = DID_TRANSPORT_FAILFAST << 16;
else else
result = DID_TRANSPORT_DISRUPTED << 16; result = DID_IMM_RETRY << 16;
break; break;
default: default:
result = DID_NO_CONNECT << 16; result = DID_NO_CONNECT << 16;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment