aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaved Hasan <jhasan@marvell.com>2020-03-26 23:02:08 -0700
committerMartin K. Petersen <martin.petersen@oracle.com>2020-03-29 18:10:59 -0400
commitc6e085c8813300cae73553bc276dbff015c1b0de (patch)
tree15a4dee47770e16caaed909cd2e04ad8699db38c
parentscsi: libfc: If PRLI rejected, move rport to PLOGI state (diff)
downloadlinux-dev-c6e085c8813300cae73553bc276dbff015c1b0de.tar.xz
linux-dev-c6e085c8813300cae73553bc276dbff015c1b0de.zip
scsi: libfc: rport state move to PLOGI if all PRLI retry exhausted
After all PRLI retries are exhausted, move rport state machine back to PLOGI state. Link: https://lore.kernel.org/r/20200327060208.17104-3-skashyap@marvell.com Signed-off-by: Javed Hasan <jhasan@marvell.com> Signed-off-by: Saurav Kashyap <skashyap@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/libfc/fc_rport.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/libfc/fc_rport.c b/drivers/scsi/libfc/fc_rport.c
index 6bb8917b99a1..773c45af9387 100644
--- a/drivers/scsi/libfc/fc_rport.c
+++ b/drivers/scsi/libfc/fc_rport.c
@@ -632,6 +632,8 @@ static void fc_rport_error(struct fc_rport_priv *rdata, int err)
fc_rport_enter_ready(rdata);
break;
case RPORT_ST_PRLI:
+ fc_rport_enter_plogi(rdata);
+ break;
case RPORT_ST_ADISC:
fc_rport_enter_logo(rdata);
break;