aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiral Shah <hishah@cisco.com>2014-11-10 15:54:34 -0500
committerChristoph Hellwig <hch@lst.de>2014-11-20 03:10:39 -0500
commit35061e21a1d29dc37ab28a50e82bfcf6de81b65d (patch)
tree2a8507354cd0ffb595aac6bd118b76fda9980ca3
parent042b356a5fcf3c5a99c34208eefc572454a330bf (diff)
Fnic: Improper resue of exchange Ids
IOs belonging to an rport are aborted with Internal terminate option when rport goes offline. Any new IO issued to the rport during this time can reuse the terminated exchange which will cause inconsistent state of the exchange between local port and remote port. fc_rport_priv is set to RPORT_ST_DELETE before exchanges are aborted by libfc. Not issuing amy more I/O requests when RPORT_ST_DELETE is set, will avoid inconsistent state of the exchange between local port and remote port. - Increment fnic version from 1.6.0.13 to 1.6.0.14 Signed-off-by: Hiral Shah <hishah@cisco.com> Signed-off-by: Sesidhar Baddela <sebaddel@cisco.com> Signed-off-by: Anil Chintalapati <achintal@cisco.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--drivers/scsi/fnic/fnic.h2
-rw-r--r--drivers/scsi/fnic/fnic_scsi.c11
2 files changed, 12 insertions, 1 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h
index dbc69ad2d1c4..5336e8d21704 100644
--- a/drivers/scsi/fnic/fnic.h
+++ b/drivers/scsi/fnic/fnic.h
@@ -39,7 +39,7 @@
39 39
40#define DRV_NAME "fnic" 40#define DRV_NAME "fnic"
41#define DRV_DESCRIPTION "Cisco FCoE HBA Driver" 41#define DRV_DESCRIPTION "Cisco FCoE HBA Driver"
42#define DRV_VERSION "1.6.0.13" 42#define DRV_VERSION "1.6.0.14"
43#define PFX DRV_NAME ": " 43#define PFX DRV_NAME ": "
44#define DFX DRV_NAME "%d: " 44#define DFX DRV_NAME "%d: "
45 45
diff --git a/drivers/scsi/fnic/fnic_scsi.c b/drivers/scsi/fnic/fnic_scsi.c
index 10d5c6bbc9e7..29d23a3c0686 100644
--- a/drivers/scsi/fnic/fnic_scsi.c
+++ b/drivers/scsi/fnic/fnic_scsi.c
@@ -423,6 +423,7 @@ static int fnic_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_
423 int sg_count = 0; 423 int sg_count = 0;
424 unsigned long flags; 424 unsigned long flags;
425 unsigned long ptr; 425 unsigned long ptr;
426 struct fc_rport_priv *rdata;
426 427
427 if (unlikely(fnic_chk_state_flags_locked(fnic, FNIC_FLAGS_IO_BLOCKED))) 428 if (unlikely(fnic_chk_state_flags_locked(fnic, FNIC_FLAGS_IO_BLOCKED)))
428 return SCSI_MLQUEUE_HOST_BUSY; 429 return SCSI_MLQUEUE_HOST_BUSY;
@@ -436,6 +437,16 @@ static int fnic_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_
436 return 0; 437 return 0;
437 } 438 }
438 439
440 rdata = lp->tt.rport_lookup(lp, rport->port_id);
441 if (!rdata || (rdata->rp_state == RPORT_ST_DELETE)) {
442 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
443 "returning IO as rport is removed\n");
444 atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
445 sc->result = DID_NO_CONNECT;
446 done(sc);
447 return 0;
448 }
449
439 if (lp->state != LPORT_ST_READY || !(lp->link_up)) 450 if (lp->state != LPORT_ST_READY || !(lp->link_up))
440 return SCSI_MLQUEUE_HOST_BUSY; 451 return SCSI_MLQUEUE_HOST_BUSY;
441 452