aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSatish Kharat <satishkh@cisco.com>2016-03-18 14:22:49 -0400
committerMartin K. Petersen <martin.petersen@oracle.com>2016-04-11 16:57:09 -0400
commita36f5dd07dd9098d43d1137ec7a2d6b92aa6d591 (patch)
treedf12fb0a387778636150ca87a3cadde02d92ed1a
parent691a837c20df0f4eacd49596a4d57fc566a40545 (diff)
fnic: Cleanup the I/O pending with fw and has timed out and is used to issue LUN reset
In case of LUN reset, the device reset command is issued with one of the I/Os that has timed out on that LUN. The change is to also return this I/O with error status set to DID_RESET. In case when the reset is issued using the sg_reset tool (from sg3_utils) it is a new command and new_sc is set to 1. Fnic driver version changed from 1.6.0.19 to 1.6.0.20 [mkp: Fixed checkpatch warning] 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.h2
-rw-r--r--drivers/scsi/fnic/fnic_scsi.c38
2 files changed, 29 insertions, 11 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h
index 52a53f8a907a..1023eaea17f3 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.19" 42#define DRV_VERSION "1.6.0.20"
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 01b480d33d75..588ffd9a33d6 100644
--- a/drivers/scsi/fnic/fnic_scsi.c
+++ b/drivers/scsi/fnic/fnic_scsi.c
@@ -2039,7 +2039,9 @@ lr_io_req_end:
2039 * successfully aborted, 1 otherwise 2039 * successfully aborted, 1 otherwise
2040 */ 2040 */
2041static int fnic_clean_pending_aborts(struct fnic *fnic, 2041static int fnic_clean_pending_aborts(struct fnic *fnic,
2042 struct scsi_cmnd *lr_sc) 2042 struct scsi_cmnd *lr_sc,
2043 bool new_sc)
2044
2043{ 2045{
2044 int tag, abt_tag; 2046 int tag, abt_tag;
2045 struct fnic_io_req *io_req; 2047 struct fnic_io_req *io_req;
@@ -2057,10 +2059,10 @@ static int fnic_clean_pending_aborts(struct fnic *fnic,
2057 spin_lock_irqsave(io_lock, flags); 2059 spin_lock_irqsave(io_lock, flags);
2058 sc = scsi_host_find_tag(fnic->lport->host, tag); 2060 sc = scsi_host_find_tag(fnic->lport->host, tag);
2059 /* 2061 /*
2060 * ignore this lun reset cmd or cmds that do not belong to 2062 * ignore this lun reset cmd if issued using new SC
2061 * this lun 2063 * or cmds that do not belong to this lun
2062 */ 2064 */
2063 if (!sc || sc == lr_sc || sc->device != lun_dev) { 2065 if (!sc || ((sc == lr_sc) && new_sc) || sc->device != lun_dev) {
2064 spin_unlock_irqrestore(io_lock, flags); 2066 spin_unlock_irqrestore(io_lock, flags);
2065 continue; 2067 continue;
2066 } 2068 }
@@ -2166,11 +2168,27 @@ static int fnic_clean_pending_aborts(struct fnic *fnic,
2166 goto clean_pending_aborts_end; 2168 goto clean_pending_aborts_end;
2167 } 2169 }
2168 CMD_STATE(sc) = FNIC_IOREQ_ABTS_COMPLETE; 2170 CMD_STATE(sc) = FNIC_IOREQ_ABTS_COMPLETE;
2169 CMD_SP(sc) = NULL; 2171
2172 /* original sc used for lr is handled by dev reset code */
2173 if (sc != lr_sc)
2174 CMD_SP(sc) = NULL;
2170 spin_unlock_irqrestore(io_lock, flags); 2175 spin_unlock_irqrestore(io_lock, flags);
2171 2176
2172 fnic_release_ioreq_buf(fnic, io_req, sc); 2177 /* original sc used for lr is handled by dev reset code */
2173 mempool_free(io_req, fnic->io_req_pool); 2178 if (sc != lr_sc) {
2179 fnic_release_ioreq_buf(fnic, io_req, sc);
2180 mempool_free(io_req, fnic->io_req_pool);
2181 }
2182
2183 /*
2184 * Any IO is returned during reset, it needs to call scsi_done
2185 * to return the scsi_cmnd to upper layer.
2186 */
2187 if (sc->scsi_done) {
2188 /* Set result to let upper SCSI layer retry */
2189 sc->result = DID_RESET << 16;
2190 sc->scsi_done(sc);
2191 }
2174 } 2192 }
2175 2193
2176 schedule_timeout(msecs_to_jiffies(2 * fnic->config.ed_tov)); 2194 schedule_timeout(msecs_to_jiffies(2 * fnic->config.ed_tov));
@@ -2264,6 +2282,7 @@ int fnic_device_reset(struct scsi_cmnd *sc)
2264 int tag = 0; 2282 int tag = 0;
2265 DECLARE_COMPLETION_ONSTACK(tm_done); 2283 DECLARE_COMPLETION_ONSTACK(tm_done);
2266 int tag_gen_flag = 0; /*to track tags allocated by fnic driver*/ 2284 int tag_gen_flag = 0; /*to track tags allocated by fnic driver*/
2285 bool new_sc = 0;
2267 2286
2268 /* Wait for rport to unblock */ 2287 /* Wait for rport to unblock */
2269 fc_block_scsi_eh(sc); 2288 fc_block_scsi_eh(sc);
@@ -2309,13 +2328,12 @@ int fnic_device_reset(struct scsi_cmnd *sc)
2309 * fix the way the EH ioctls work for real, but until 2328 * fix the way the EH ioctls work for real, but until
2310 * that happens we fail these explicit requests here. 2329 * that happens we fail these explicit requests here.
2311 */ 2330 */
2312 if (shost_use_blk_mq(sc->device->host))
2313 goto fnic_device_reset_end;
2314 2331
2315 tag = fnic_scsi_host_start_tag(fnic, sc); 2332 tag = fnic_scsi_host_start_tag(fnic, sc);
2316 if (unlikely(tag == SCSI_NO_TAG)) 2333 if (unlikely(tag == SCSI_NO_TAG))
2317 goto fnic_device_reset_end; 2334 goto fnic_device_reset_end;
2318 tag_gen_flag = 1; 2335 tag_gen_flag = 1;
2336 new_sc = 1;
2319 } 2337 }
2320 io_lock = fnic_io_lock_hash(fnic, sc); 2338 io_lock = fnic_io_lock_hash(fnic, sc);
2321 spin_lock_irqsave(io_lock, flags); 2339 spin_lock_irqsave(io_lock, flags);
@@ -2450,7 +2468,7 @@ int fnic_device_reset(struct scsi_cmnd *sc)
2450 * the lun reset cmd. If all cmds get cleaned, the lun reset 2468 * the lun reset cmd. If all cmds get cleaned, the lun reset
2451 * succeeds 2469 * succeeds
2452 */ 2470 */
2453 if (fnic_clean_pending_aborts(fnic, sc)) { 2471 if (fnic_clean_pending_aborts(fnic, sc, new_sc)) {
2454 spin_lock_irqsave(io_lock, flags); 2472 spin_lock_irqsave(io_lock, flags);
2455 io_req = (struct fnic_io_req *)CMD_SP(sc); 2473 io_req = (struct fnic_io_req *)CMD_SP(sc);
2456 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, 2474 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,