diff options
author | Satish Kharat <satishkh@cisco.com> | 2016-03-18 14:22:50 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-04-11 16:57:09 -0400 |
commit | 1b6ac5e3ff354652ca59240e1ba8b2d22539df07 (patch) | |
tree | 0db370df3cab25a11c960d365b6eb7756e111c20 | |
parent | a36f5dd07dd9098d43d1137ec7a2d6b92aa6d591 (diff) |
fnic: Using rport->dd_data to check rport online instead of rport_lookup.
When issuing I/O we check if rport is online through libfc
rport_lookup() function which needs to be protected by mutex lock that
cannot acquired in I/O context. The change is to use midlayer remote
port s dd_data which is preserved until its devloss timeout and no
protection is required. The the scsi_cmnd error code is expected to be
in the left 16 bits of the result field. Changed to correct this. Fnic
driver version changed from 1.6.0.20 to 1.6.0.21
Signed-off-by: Satish Kharat <satishkh@cisco.com>
Signed-off-by: Sesidhar Baddela <sebaddel@cisco.com>
Reviewed-by: Ewan Milne <emilne@redhat.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/fnic/fnic.h | 2 | ||||
-rw-r--r-- | drivers/scsi/fnic/fnic_scsi.c | 20 |
2 files changed, 12 insertions, 10 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h index 1023eaea17f3..9ddc9200e0a4 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.20" | 42 | #define DRV_VERSION "1.6.0.21" |
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 588ffd9a33d6..d9fd2f841585 100644 --- a/drivers/scsi/fnic/fnic_scsi.c +++ b/drivers/scsi/fnic/fnic_scsi.c | |||
@@ -439,7 +439,6 @@ static int fnic_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_ | |||
439 | int sg_count = 0; | 439 | int sg_count = 0; |
440 | unsigned long flags = 0; | 440 | unsigned long flags = 0; |
441 | unsigned long ptr; | 441 | unsigned long ptr; |
442 | struct fc_rport_priv *rdata; | ||
443 | spinlock_t *io_lock = NULL; | 442 | spinlock_t *io_lock = NULL; |
444 | int io_lock_acquired = 0; | 443 | int io_lock_acquired = 0; |
445 | 444 | ||
@@ -455,14 +454,17 @@ static int fnic_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_ | |||
455 | return 0; | 454 | return 0; |
456 | } | 455 | } |
457 | 456 | ||
458 | rdata = lp->tt.rport_lookup(lp, rport->port_id); | 457 | if (rport) { |
459 | if (!rdata || (rdata->rp_state == RPORT_ST_DELETE)) { | 458 | struct fc_rport_libfc_priv *rp = rport->dd_data; |
460 | FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, | 459 | |
461 | "returning IO as rport is removed\n"); | 460 | if (!rp || rp->rp_state != RPORT_ST_READY) { |
462 | atomic64_inc(&fnic_stats->misc_stats.rport_not_ready); | 461 | FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, |
463 | sc->result = DID_NO_CONNECT; | 462 | "returning DID_NO_CONNECT for IO as rport is removed\n"); |
464 | done(sc); | 463 | atomic64_inc(&fnic_stats->misc_stats.rport_not_ready); |
465 | return 0; | 464 | sc->result = DID_NO_CONNECT<<16; |
465 | done(sc); | ||
466 | return 0; | ||
467 | } | ||
466 | } | 468 | } |
467 | 469 | ||
468 | if (lp->state != LPORT_ST_READY || !(lp->link_up)) | 470 | if (lp->state != LPORT_ST_READY || !(lp->link_up)) |