2 * Copyright 2008 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18 #include <linux/mempool.h>
19 #include <linux/errno.h>
20 #include <linux/init.h>
21 #include <linux/workqueue.h>
22 #include <linux/pci.h>
23 #include <linux/scatterlist.h>
24 #include <linux/skbuff.h>
25 #include <linux/spinlock.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/delay.h>
29 #include <linux/gfp.h>
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_cmnd.h>
34 #include <scsi/scsi_tcq.h>
35 #include <scsi/fc/fc_els.h>
36 #include <scsi/fc/fc_fcoe.h>
37 #include <scsi/libfc.h>
38 #include <scsi/fc_frame.h>
42 const char *fnic_state_str
[] = {
43 [FNIC_IN_FC_MODE
] = "FNIC_IN_FC_MODE",
44 [FNIC_IN_FC_TRANS_ETH_MODE
] = "FNIC_IN_FC_TRANS_ETH_MODE",
45 [FNIC_IN_ETH_MODE
] = "FNIC_IN_ETH_MODE",
46 [FNIC_IN_ETH_TRANS_FC_MODE
] = "FNIC_IN_ETH_TRANS_FC_MODE",
49 static const char *fnic_ioreq_state_str
[] = {
50 [FNIC_IOREQ_NOT_INITED
] = "FNIC_IOREQ_NOT_INITED",
51 [FNIC_IOREQ_CMD_PENDING
] = "FNIC_IOREQ_CMD_PENDING",
52 [FNIC_IOREQ_ABTS_PENDING
] = "FNIC_IOREQ_ABTS_PENDING",
53 [FNIC_IOREQ_ABTS_COMPLETE
] = "FNIC_IOREQ_ABTS_COMPLETE",
54 [FNIC_IOREQ_CMD_COMPLETE
] = "FNIC_IOREQ_CMD_COMPLETE",
57 static const char *fcpio_status_str
[] = {
58 [FCPIO_SUCCESS
] = "FCPIO_SUCCESS", /*0x0*/
59 [FCPIO_INVALID_HEADER
] = "FCPIO_INVALID_HEADER",
60 [FCPIO_OUT_OF_RESOURCE
] = "FCPIO_OUT_OF_RESOURCE",
61 [FCPIO_INVALID_PARAM
] = "FCPIO_INVALID_PARAM]",
62 [FCPIO_REQ_NOT_SUPPORTED
] = "FCPIO_REQ_NOT_SUPPORTED",
63 [FCPIO_IO_NOT_FOUND
] = "FCPIO_IO_NOT_FOUND",
64 [FCPIO_ABORTED
] = "FCPIO_ABORTED", /*0x41*/
65 [FCPIO_TIMEOUT
] = "FCPIO_TIMEOUT",
66 [FCPIO_SGL_INVALID
] = "FCPIO_SGL_INVALID",
67 [FCPIO_MSS_INVALID
] = "FCPIO_MSS_INVALID",
68 [FCPIO_DATA_CNT_MISMATCH
] = "FCPIO_DATA_CNT_MISMATCH",
69 [FCPIO_FW_ERR
] = "FCPIO_FW_ERR",
70 [FCPIO_ITMF_REJECTED
] = "FCPIO_ITMF_REJECTED",
71 [FCPIO_ITMF_FAILED
] = "FCPIO_ITMF_FAILED",
72 [FCPIO_ITMF_INCORRECT_LUN
] = "FCPIO_ITMF_INCORRECT_LUN",
73 [FCPIO_CMND_REJECTED
] = "FCPIO_CMND_REJECTED",
74 [FCPIO_NO_PATH_AVAIL
] = "FCPIO_NO_PATH_AVAIL",
75 [FCPIO_PATH_FAILED
] = "FCPIO_PATH_FAILED",
76 [FCPIO_LUNMAP_CHNG_PEND
] = "FCPIO_LUNHMAP_CHNG_PEND",
79 const char *fnic_state_to_str(unsigned int state
)
81 if (state
>= ARRAY_SIZE(fnic_state_str
) || !fnic_state_str
[state
])
84 return fnic_state_str
[state
];
87 static const char *fnic_ioreq_state_to_str(unsigned int state
)
89 if (state
>= ARRAY_SIZE(fnic_ioreq_state_str
) ||
90 !fnic_ioreq_state_str
[state
])
93 return fnic_ioreq_state_str
[state
];
96 static const char *fnic_fcpio_status_to_str(unsigned int status
)
98 if (status
>= ARRAY_SIZE(fcpio_status_str
) || !fcpio_status_str
[status
])
101 return fcpio_status_str
[status
];
104 static void fnic_cleanup_io(struct fnic
*fnic
, int exclude_id
);
106 static inline spinlock_t
*fnic_io_lock_hash(struct fnic
*fnic
,
107 struct scsi_cmnd
*sc
)
109 u32 hash
= sc
->request
->tag
& (FNIC_IO_LOCKS
- 1);
111 return &fnic
->io_req_lock
[hash
];
114 static inline spinlock_t
*fnic_io_lock_tag(struct fnic
*fnic
,
117 return &fnic
->io_req_lock
[tag
& (FNIC_IO_LOCKS
- 1)];
121 * Unmap the data buffer and sense buffer for an io_req,
122 * also unmap and free the device-private scatter/gather list.
124 static void fnic_release_ioreq_buf(struct fnic
*fnic
,
125 struct fnic_io_req
*io_req
,
126 struct scsi_cmnd
*sc
)
128 if (io_req
->sgl_list_pa
)
129 dma_unmap_single(&fnic
->pdev
->dev
, io_req
->sgl_list_pa
,
130 sizeof(io_req
->sgl_list
[0]) * io_req
->sgl_cnt
,
135 mempool_free(io_req
->sgl_list_alloc
,
136 fnic
->io_sgl_pool
[io_req
->sgl_type
]);
137 if (io_req
->sense_buf_pa
)
138 dma_unmap_single(&fnic
->pdev
->dev
, io_req
->sense_buf_pa
,
139 SCSI_SENSE_BUFFERSIZE
, DMA_FROM_DEVICE
);
142 /* Free up Copy Wq descriptors. Called with copy_wq lock held */
143 static int free_wq_copy_descs(struct fnic
*fnic
, struct vnic_wq_copy
*wq
)
145 /* if no Ack received from firmware, then nothing to clean */
146 if (!fnic
->fw_ack_recd
[0])
150 * Update desc_available count based on number of freed descriptors
151 * Account for wraparound
153 if (wq
->to_clean_index
<= fnic
->fw_ack_index
[0])
154 wq
->ring
.desc_avail
+= (fnic
->fw_ack_index
[0]
155 - wq
->to_clean_index
+ 1);
157 wq
->ring
.desc_avail
+= (wq
->ring
.desc_count
159 + fnic
->fw_ack_index
[0] + 1);
162 * just bump clean index to ack_index+1 accounting for wraparound
163 * this will essentially free up all descriptors between
164 * to_clean_index and fw_ack_index, both inclusive
167 (fnic
->fw_ack_index
[0] + 1) % wq
->ring
.desc_count
;
169 /* we have processed the acks received so far */
170 fnic
->fw_ack_recd
[0] = 0;
176 * __fnic_set_state_flags
177 * Sets/Clears bits in fnic's state_flags
180 __fnic_set_state_flags(struct fnic
*fnic
, unsigned long st_flags
,
181 unsigned long clearbits
)
183 unsigned long flags
= 0;
184 unsigned long host_lock_flags
= 0;
186 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
187 spin_lock_irqsave(fnic
->lport
->host
->host_lock
, host_lock_flags
);
190 fnic
->state_flags
&= ~st_flags
;
192 fnic
->state_flags
|= st_flags
;
194 spin_unlock_irqrestore(fnic
->lport
->host
->host_lock
, host_lock_flags
);
195 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
202 * fnic_fw_reset_handler
203 * Routine to send reset msg to fw
205 int fnic_fw_reset_handler(struct fnic
*fnic
)
207 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
211 /* indicate fwreset to io path */
212 fnic_set_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
214 skb_queue_purge(&fnic
->frame_queue
);
215 skb_queue_purge(&fnic
->tx_queue
);
217 /* wait for io cmpl */
218 while (atomic_read(&fnic
->in_flight
))
219 schedule_timeout(msecs_to_jiffies(1));
221 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
223 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
224 free_wq_copy_descs(fnic
, wq
);
226 if (!vnic_wq_copy_desc_avail(wq
))
229 fnic_queue_wq_copy_desc_fw_reset(wq
, SCSI_NO_TAG
);
230 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
231 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
232 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
233 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
235 &fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
238 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
241 atomic64_inc(&fnic
->fnic_stats
.reset_stats
.fw_resets
);
242 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
243 "Issued fw reset\n");
245 fnic_clear_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
246 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
247 "Failed to issue fw reset\n");
255 * fnic_flogi_reg_handler
256 * Routine to send flogi register msg to fw
258 int fnic_flogi_reg_handler(struct fnic
*fnic
, u32 fc_id
)
260 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
261 enum fcpio_flogi_reg_format_type format
;
262 struct fc_lport
*lp
= fnic
->lport
;
267 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
269 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
270 free_wq_copy_descs(fnic
, wq
);
272 if (!vnic_wq_copy_desc_avail(wq
)) {
274 goto flogi_reg_ioreq_end
;
277 if (fnic
->ctlr
.map_dest
) {
278 memset(gw_mac
, 0xff, ETH_ALEN
);
279 format
= FCPIO_FLOGI_REG_DEF_DEST
;
281 memcpy(gw_mac
, fnic
->ctlr
.dest_addr
, ETH_ALEN
);
282 format
= FCPIO_FLOGI_REG_GW_DEST
;
285 if ((fnic
->config
.flags
& VFCF_FIP_CAPABLE
) && !fnic
->ctlr
.map_dest
) {
286 fnic_queue_wq_copy_desc_fip_reg(wq
, SCSI_NO_TAG
,
289 lp
->r_a_tov
, lp
->e_d_tov
);
290 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
291 "FLOGI FIP reg issued fcid %x src %pM dest %pM\n",
292 fc_id
, fnic
->data_src_addr
, gw_mac
);
294 fnic_queue_wq_copy_desc_flogi_reg(wq
, SCSI_NO_TAG
,
295 format
, fc_id
, gw_mac
);
296 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
297 "FLOGI reg issued fcid %x map %d dest %pM\n",
298 fc_id
, fnic
->ctlr
.map_dest
, gw_mac
);
301 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
302 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
303 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
304 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
305 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
308 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
313 * fnic_queue_wq_copy_desc
314 * Routine to enqueue a wq copy desc
316 static inline int fnic_queue_wq_copy_desc(struct fnic
*fnic
,
317 struct vnic_wq_copy
*wq
,
318 struct fnic_io_req
*io_req
,
319 struct scsi_cmnd
*sc
,
322 struct scatterlist
*sg
;
323 struct fc_rport
*rport
= starget_to_rport(scsi_target(sc
->device
));
324 struct fc_rport_libfc_priv
*rp
= rport
->dd_data
;
325 struct host_sg_desc
*desc
;
326 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
328 unsigned long intr_flags
;
331 struct scsi_lun fc_lun
;
334 /* For each SGE, create a device desc entry */
335 desc
= io_req
->sgl_list
;
336 for_each_sg(scsi_sglist(sc
), sg
, sg_count
, i
) {
337 desc
->addr
= cpu_to_le64(sg_dma_address(sg
));
338 desc
->len
= cpu_to_le32(sg_dma_len(sg
));
343 io_req
->sgl_list_pa
= dma_map_single(&fnic
->pdev
->dev
,
345 sizeof(io_req
->sgl_list
[0]) * sg_count
,
347 if (dma_mapping_error(&fnic
->pdev
->dev
, io_req
->sgl_list_pa
)) {
348 printk(KERN_ERR
"DMA mapping failed\n");
349 return SCSI_MLQUEUE_HOST_BUSY
;
353 io_req
->sense_buf_pa
= dma_map_single(&fnic
->pdev
->dev
,
355 SCSI_SENSE_BUFFERSIZE
,
357 if (dma_mapping_error(&fnic
->pdev
->dev
, io_req
->sense_buf_pa
)) {
358 dma_unmap_single(&fnic
->pdev
->dev
, io_req
->sgl_list_pa
,
359 sizeof(io_req
->sgl_list
[0]) * sg_count
,
361 printk(KERN_ERR
"DMA mapping failed\n");
362 return SCSI_MLQUEUE_HOST_BUSY
;
365 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
367 /* Enqueue the descriptor in the Copy WQ */
368 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], intr_flags
);
370 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
371 free_wq_copy_descs(fnic
, wq
);
373 if (unlikely(!vnic_wq_copy_desc_avail(wq
))) {
374 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
375 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
376 "fnic_queue_wq_copy_desc failure - no descriptors\n");
377 atomic64_inc(&misc_stats
->io_cpwq_alloc_failures
);
378 return SCSI_MLQUEUE_HOST_BUSY
;
382 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
383 flags
= FCPIO_ICMND_RDDATA
;
384 else if (sc
->sc_data_direction
== DMA_TO_DEVICE
)
385 flags
= FCPIO_ICMND_WRDATA
;
388 if ((fnic
->config
.flags
& VFCF_FCP_SEQ_LVL_ERR
) &&
389 (rp
->flags
& FC_RP_FLAGS_RETRY
))
390 exch_flags
|= FCPIO_ICMND_SRFLAG_RETRY
;
392 fnic_queue_wq_copy_desc_icmnd_16(wq
, sc
->request
->tag
,
393 0, exch_flags
, io_req
->sgl_cnt
,
394 SCSI_SENSE_BUFFERSIZE
,
396 io_req
->sense_buf_pa
,
397 0, /* scsi cmd ref, always 0 */
398 FCPIO_ICMND_PTA_SIMPLE
,
399 /* scsi pri and tag */
400 flags
, /* command flags */
401 sc
->cmnd
, sc
->cmd_len
,
403 fc_lun
.scsi_lun
, io_req
->port_id
,
404 rport
->maxframe_size
, rp
->r_a_tov
,
407 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
408 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
409 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
410 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
411 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
413 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
419 * Routine to send a scsi cdb
420 * Called with host_lock held and interrupts disabled.
422 static int fnic_queuecommand_lck(struct scsi_cmnd
*sc
, void (*done
)(struct scsi_cmnd
*))
424 struct fc_lport
*lp
= shost_priv(sc
->device
->host
);
425 struct fc_rport
*rport
;
426 struct fnic_io_req
*io_req
= NULL
;
427 struct fnic
*fnic
= lport_priv(lp
);
428 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
429 struct vnic_wq_copy
*wq
;
433 unsigned long flags
= 0;
435 spinlock_t
*io_lock
= NULL
;
436 int io_lock_acquired
= 0;
437 struct fc_rport_libfc_priv
*rp
;
439 if (unlikely(fnic_chk_state_flags_locked(fnic
, FNIC_FLAGS_IO_BLOCKED
)))
440 return SCSI_MLQUEUE_HOST_BUSY
;
442 rport
= starget_to_rport(scsi_target(sc
->device
));
444 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
445 "returning DID_NO_CONNECT for IO as rport is NULL\n");
446 sc
->result
= DID_NO_CONNECT
<< 16;
451 ret
= fc_remote_port_chkready(rport
);
453 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
454 "rport is not ready\n");
455 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
462 if (!rp
|| rp
->rp_state
== RPORT_ST_DELETE
) {
463 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
464 "rport 0x%x removed, returning DID_NO_CONNECT\n",
467 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
468 sc
->result
= DID_NO_CONNECT
<<16;
473 if (rp
->rp_state
!= RPORT_ST_READY
) {
474 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
475 "rport 0x%x in state 0x%x, returning DID_IMM_RETRY\n",
476 rport
->port_id
, rp
->rp_state
);
478 sc
->result
= DID_IMM_RETRY
<< 16;
483 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
))
484 return SCSI_MLQUEUE_HOST_BUSY
;
486 atomic_inc(&fnic
->in_flight
);
489 * Release host lock, use driver resource specific locks from here.
490 * Don't re-enable interrupts in case they were disabled prior to the
491 * caller disabling them.
493 spin_unlock(lp
->host
->host_lock
);
494 CMD_STATE(sc
) = FNIC_IOREQ_NOT_INITED
;
495 CMD_FLAGS(sc
) = FNIC_NO_FLAGS
;
497 /* Get a new io_req for this SCSI IO */
498 io_req
= mempool_alloc(fnic
->io_req_pool
, GFP_ATOMIC
);
500 atomic64_inc(&fnic_stats
->io_stats
.alloc_failures
);
501 ret
= SCSI_MLQUEUE_HOST_BUSY
;
504 memset(io_req
, 0, sizeof(*io_req
));
506 /* Map the data buffer */
507 sg_count
= scsi_dma_map(sc
);
509 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
510 sc
->request
->tag
, sc
, 0, sc
->cmnd
[0],
511 sg_count
, CMD_STATE(sc
));
512 mempool_free(io_req
, fnic
->io_req_pool
);
516 /* Determine the type of scatter/gather list we need */
517 io_req
->sgl_cnt
= sg_count
;
518 io_req
->sgl_type
= FNIC_SGL_CACHE_DFLT
;
519 if (sg_count
> FNIC_DFLT_SG_DESC_CNT
)
520 io_req
->sgl_type
= FNIC_SGL_CACHE_MAX
;
524 mempool_alloc(fnic
->io_sgl_pool
[io_req
->sgl_type
],
526 if (!io_req
->sgl_list
) {
527 atomic64_inc(&fnic_stats
->io_stats
.alloc_failures
);
528 ret
= SCSI_MLQUEUE_HOST_BUSY
;
530 mempool_free(io_req
, fnic
->io_req_pool
);
534 /* Cache sgl list allocated address before alignment */
535 io_req
->sgl_list_alloc
= io_req
->sgl_list
;
536 ptr
= (unsigned long) io_req
->sgl_list
;
537 if (ptr
% FNIC_SG_DESC_ALIGN
) {
538 io_req
->sgl_list
= (struct host_sg_desc
*)
539 (((unsigned long) ptr
540 + FNIC_SG_DESC_ALIGN
- 1)
541 & ~(FNIC_SG_DESC_ALIGN
- 1));
546 * Will acquire lock defore setting to IO initialized.
549 io_lock
= fnic_io_lock_hash(fnic
, sc
);
550 spin_lock_irqsave(io_lock
, flags
);
552 /* initialize rest of io_req */
553 io_lock_acquired
= 1;
554 io_req
->port_id
= rport
->port_id
;
555 io_req
->start_time
= jiffies
;
556 CMD_STATE(sc
) = FNIC_IOREQ_CMD_PENDING
;
557 CMD_SP(sc
) = (char *)io_req
;
558 CMD_FLAGS(sc
) |= FNIC_IO_INITIALIZED
;
559 sc
->scsi_done
= done
;
561 /* create copy wq desc and enqueue it */
562 wq
= &fnic
->wq_copy
[0];
563 ret
= fnic_queue_wq_copy_desc(fnic
, wq
, io_req
, sc
, sg_count
);
566 * In case another thread cancelled the request,
567 * refetch the pointer under the lock.
569 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
570 sc
->request
->tag
, sc
, 0, 0, 0,
571 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
572 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
574 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
575 spin_unlock_irqrestore(io_lock
, flags
);
577 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
578 mempool_free(io_req
, fnic
->io_req_pool
);
580 atomic_dec(&fnic
->in_flight
);
581 /* acquire host lock before returning to SCSI */
582 spin_lock(lp
->host
->host_lock
);
585 atomic64_inc(&fnic_stats
->io_stats
.active_ios
);
586 atomic64_inc(&fnic_stats
->io_stats
.num_ios
);
587 if (atomic64_read(&fnic_stats
->io_stats
.active_ios
) >
588 atomic64_read(&fnic_stats
->io_stats
.max_active_ios
))
589 atomic64_set(&fnic_stats
->io_stats
.max_active_ios
,
590 atomic64_read(&fnic_stats
->io_stats
.active_ios
));
592 /* REVISIT: Use per IO lock in the final code */
593 CMD_FLAGS(sc
) |= FNIC_IO_ISSUED
;
596 cmd_trace
= ((u64
)sc
->cmnd
[0] << 56 | (u64
)sc
->cmnd
[7] << 40 |
597 (u64
)sc
->cmnd
[8] << 32 | (u64
)sc
->cmnd
[2] << 24 |
598 (u64
)sc
->cmnd
[3] << 16 | (u64
)sc
->cmnd
[4] << 8 |
601 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
602 sc
->request
->tag
, sc
, io_req
,
604 (((u64
)CMD_FLAGS(sc
) >> 32) | CMD_STATE(sc
)));
606 /* if only we issued IO, will we have the io lock */
607 if (io_lock_acquired
)
608 spin_unlock_irqrestore(io_lock
, flags
);
610 atomic_dec(&fnic
->in_flight
);
611 /* acquire host lock before returning to SCSI */
612 spin_lock(lp
->host
->host_lock
);
616 DEF_SCSI_QCMD(fnic_queuecommand
)
619 * fnic_fcpio_fw_reset_cmpl_handler
620 * Routine to handle fw reset completion
622 static int fnic_fcpio_fw_reset_cmpl_handler(struct fnic
*fnic
,
623 struct fcpio_fw_req
*desc
)
627 struct fcpio_tag tag
;
630 struct reset_stats
*reset_stats
= &fnic
->fnic_stats
.reset_stats
;
632 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
634 atomic64_inc(&reset_stats
->fw_reset_completions
);
636 /* Clean up all outstanding io requests */
637 fnic_cleanup_io(fnic
, SCSI_NO_TAG
);
639 atomic64_set(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
, 0);
640 atomic64_set(&fnic
->fnic_stats
.io_stats
.active_ios
, 0);
641 atomic64_set(&fnic
->io_cmpl_skip
, 0);
643 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
645 /* fnic should be in FC_TRANS_ETH_MODE */
646 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
) {
647 /* Check status of reset completion */
649 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
650 "reset cmpl success\n");
651 /* Ready to send flogi out */
652 fnic
->state
= FNIC_IN_ETH_MODE
;
654 FNIC_SCSI_DBG(KERN_DEBUG
,
656 "fnic fw_reset : failed %s\n",
657 fnic_fcpio_status_to_str(hdr_status
));
660 * Unable to change to eth mode, cannot send out flogi
661 * Change state to fc mode, so that subsequent Flogi
662 * requests from libFC will cause more attempts to
663 * reset the firmware. Free the cached flogi
665 fnic
->state
= FNIC_IN_FC_MODE
;
666 atomic64_inc(&reset_stats
->fw_reset_failures
);
670 FNIC_SCSI_DBG(KERN_DEBUG
,
672 "Unexpected state %s while processing"
673 " reset cmpl\n", fnic_state_to_str(fnic
->state
));
674 atomic64_inc(&reset_stats
->fw_reset_failures
);
678 /* Thread removing device blocks till firmware reset is complete */
679 if (fnic
->remove_wait
)
680 complete(fnic
->remove_wait
);
683 * If fnic is being removed, or fw reset failed
684 * free the flogi frame. Else, send it out
686 if (fnic
->remove_wait
|| ret
) {
687 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
688 skb_queue_purge(&fnic
->tx_queue
);
689 goto reset_cmpl_handler_end
;
692 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
696 reset_cmpl_handler_end
:
697 fnic_clear_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
703 * fnic_fcpio_flogi_reg_cmpl_handler
704 * Routine to handle flogi register completion
706 static int fnic_fcpio_flogi_reg_cmpl_handler(struct fnic
*fnic
,
707 struct fcpio_fw_req
*desc
)
711 struct fcpio_tag tag
;
715 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
717 /* Update fnic state based on status of flogi reg completion */
718 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
720 if (fnic
->state
== FNIC_IN_ETH_TRANS_FC_MODE
) {
722 /* Check flogi registration completion status */
724 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
725 "flog reg succeeded\n");
726 fnic
->state
= FNIC_IN_FC_MODE
;
728 FNIC_SCSI_DBG(KERN_DEBUG
,
730 "fnic flogi reg :failed %s\n",
731 fnic_fcpio_status_to_str(hdr_status
));
732 fnic
->state
= FNIC_IN_ETH_MODE
;
736 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
737 "Unexpected fnic state %s while"
738 " processing flogi reg completion\n",
739 fnic_state_to_str(fnic
->state
));
744 if (fnic
->stop_rx_link_events
) {
745 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
746 goto reg_cmpl_handler_end
;
748 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
751 queue_work(fnic_event_queue
, &fnic
->frame_work
);
753 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
756 reg_cmpl_handler_end
:
760 static inline int is_ack_index_in_range(struct vnic_wq_copy
*wq
,
763 if (wq
->to_clean_index
<= wq
->to_use_index
) {
764 /* out of range, stale request_out index */
765 if (request_out
< wq
->to_clean_index
||
766 request_out
>= wq
->to_use_index
)
769 /* out of range, stale request_out index */
770 if (request_out
< wq
->to_clean_index
&&
771 request_out
>= wq
->to_use_index
)
774 /* request_out index is in range */
780 * Mark that ack received and store the Ack index. If there are multiple
781 * acks received before Tx thread cleans it up, the latest value will be
782 * used which is correct behavior. This state should be in the copy Wq
783 * instead of in the fnic
785 static inline void fnic_fcpio_ack_handler(struct fnic
*fnic
,
786 unsigned int cq_index
,
787 struct fcpio_fw_req
*desc
)
789 struct vnic_wq_copy
*wq
;
790 u16 request_out
= desc
->u
.ack
.request_out
;
792 u64
*ox_id_tag
= (u64
*)(void *)desc
;
794 /* mark the ack state */
795 wq
= &fnic
->wq_copy
[cq_index
- fnic
->raw_wq_count
- fnic
->rq_count
];
796 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
798 fnic
->fnic_stats
.misc_stats
.last_ack_time
= jiffies
;
799 if (is_ack_index_in_range(wq
, request_out
)) {
800 fnic
->fw_ack_index
[0] = request_out
;
801 fnic
->fw_ack_recd
[0] = 1;
804 &fnic
->fnic_stats
.misc_stats
.ack_index_out_of_range
);
806 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
807 FNIC_TRACE(fnic_fcpio_ack_handler
,
808 fnic
->lport
->host
->host_no
, 0, 0, ox_id_tag
[2], ox_id_tag
[3],
809 ox_id_tag
[4], ox_id_tag
[5]);
813 * fnic_fcpio_icmnd_cmpl_handler
814 * Routine to handle icmnd completions
816 static void fnic_fcpio_icmnd_cmpl_handler(struct fnic
*fnic
,
817 struct fcpio_fw_req
*desc
)
821 struct fcpio_tag tag
;
824 struct fcpio_icmnd_cmpl
*icmnd_cmpl
;
825 struct fnic_io_req
*io_req
;
826 struct scsi_cmnd
*sc
;
827 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
831 unsigned long start_time
;
832 unsigned long io_duration_time
;
834 /* Decode the cmpl description to get the io_req id */
835 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
836 fcpio_tag_id_dec(&tag
, &id
);
837 icmnd_cmpl
= &desc
->u
.icmnd_cmpl
;
839 if (id
>= fnic
->fnic_max_tag_id
) {
840 shost_printk(KERN_ERR
, fnic
->lport
->host
,
841 "Tag out of range tag %x hdr status = %s\n",
842 id
, fnic_fcpio_status_to_str(hdr_status
));
846 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
);
849 atomic64_inc(&fnic_stats
->io_stats
.sc_null
);
850 shost_printk(KERN_ERR
, fnic
->lport
->host
,
851 "icmnd_cmpl sc is null - "
852 "hdr status = %s tag = 0x%x desc = 0x%p\n",
853 fnic_fcpio_status_to_str(hdr_status
), id
, desc
);
854 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler
,
855 fnic
->lport
->host
->host_no
, id
,
856 ((u64
)icmnd_cmpl
->_resvd0
[1] << 16 |
857 (u64
)icmnd_cmpl
->_resvd0
[0]),
858 ((u64
)hdr_status
<< 16 |
859 (u64
)icmnd_cmpl
->scsi_status
<< 8 |
860 (u64
)icmnd_cmpl
->flags
), desc
,
861 (u64
)icmnd_cmpl
->residual
, 0);
865 io_lock
= fnic_io_lock_hash(fnic
, sc
);
866 spin_lock_irqsave(io_lock
, flags
);
867 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
868 WARN_ON_ONCE(!io_req
);
870 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
871 CMD_FLAGS(sc
) |= FNIC_IO_REQ_NULL
;
872 spin_unlock_irqrestore(io_lock
, flags
);
873 shost_printk(KERN_ERR
, fnic
->lport
->host
,
874 "icmnd_cmpl io_req is null - "
875 "hdr status = %s tag = 0x%x sc 0x%p\n",
876 fnic_fcpio_status_to_str(hdr_status
), id
, sc
);
879 start_time
= io_req
->start_time
;
881 /* firmware completed the io */
882 io_req
->io_completed
= 1;
885 * if SCSI-ML has already issued abort on this command,
886 * set completion of the IO. The abts path will clean it up
888 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
891 * set the FNIC_IO_DONE so that this doesn't get
892 * flagged as 'out of order' if it was not aborted
894 CMD_FLAGS(sc
) |= FNIC_IO_DONE
;
895 CMD_FLAGS(sc
) |= FNIC_IO_ABTS_PENDING
;
896 spin_unlock_irqrestore(io_lock
, flags
);
897 if(FCPIO_ABORTED
== hdr_status
)
898 CMD_FLAGS(sc
) |= FNIC_IO_ABORTED
;
900 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
901 "icmnd_cmpl abts pending "
902 "hdr status = %s tag = 0x%x sc = 0x%p "
903 "scsi_status = %x residual = %d\n",
904 fnic_fcpio_status_to_str(hdr_status
),
906 icmnd_cmpl
->scsi_status
,
907 icmnd_cmpl
->residual
);
911 /* Mark the IO as complete */
912 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
914 icmnd_cmpl
= &desc
->u
.icmnd_cmpl
;
916 switch (hdr_status
) {
918 sc
->result
= (DID_OK
<< 16) | icmnd_cmpl
->scsi_status
;
919 xfer_len
= scsi_bufflen(sc
);
920 scsi_set_resid(sc
, icmnd_cmpl
->residual
);
922 if (icmnd_cmpl
->flags
& FCPIO_ICMND_CMPL_RESID_UNDER
)
923 xfer_len
-= icmnd_cmpl
->residual
;
925 if (icmnd_cmpl
->scsi_status
== SAM_STAT_CHECK_CONDITION
)
926 atomic64_inc(&fnic_stats
->misc_stats
.check_condition
);
928 if (icmnd_cmpl
->scsi_status
== SAM_STAT_TASK_SET_FULL
)
929 atomic64_inc(&fnic_stats
->misc_stats
.queue_fulls
);
932 case FCPIO_TIMEOUT
: /* request was timed out */
933 atomic64_inc(&fnic_stats
->misc_stats
.fcpio_timeout
);
934 sc
->result
= (DID_TIME_OUT
<< 16) | icmnd_cmpl
->scsi_status
;
937 case FCPIO_ABORTED
: /* request was aborted */
938 atomic64_inc(&fnic_stats
->misc_stats
.fcpio_aborted
);
939 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
942 case FCPIO_DATA_CNT_MISMATCH
: /* recv/sent more/less data than exp. */
943 atomic64_inc(&fnic_stats
->misc_stats
.data_count_mismatch
);
944 scsi_set_resid(sc
, icmnd_cmpl
->residual
);
945 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
948 case FCPIO_OUT_OF_RESOURCE
: /* out of resources to complete request */
949 atomic64_inc(&fnic_stats
->fw_stats
.fw_out_of_resources
);
950 sc
->result
= (DID_REQUEUE
<< 16) | icmnd_cmpl
->scsi_status
;
953 case FCPIO_IO_NOT_FOUND
: /* requested I/O was not found */
954 atomic64_inc(&fnic_stats
->io_stats
.io_not_found
);
955 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
958 case FCPIO_SGL_INVALID
: /* request was aborted due to sgl error */
959 atomic64_inc(&fnic_stats
->misc_stats
.sgl_invalid
);
960 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
963 case FCPIO_FW_ERR
: /* request was terminated due fw error */
964 atomic64_inc(&fnic_stats
->fw_stats
.io_fw_errs
);
965 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
968 case FCPIO_MSS_INVALID
: /* request was aborted due to mss error */
969 atomic64_inc(&fnic_stats
->misc_stats
.mss_invalid
);
970 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
973 case FCPIO_INVALID_HEADER
: /* header contains invalid data */
974 case FCPIO_INVALID_PARAM
: /* some parameter in request invalid */
975 case FCPIO_REQ_NOT_SUPPORTED
:/* request type is not supported */
977 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
981 /* Break link with the SCSI command */
983 CMD_FLAGS(sc
) |= FNIC_IO_DONE
;
985 spin_unlock_irqrestore(io_lock
, flags
);
987 if (hdr_status
!= FCPIO_SUCCESS
) {
988 atomic64_inc(&fnic_stats
->io_stats
.io_failures
);
989 shost_printk(KERN_ERR
, fnic
->lport
->host
, "hdr status = %s\n",
990 fnic_fcpio_status_to_str(hdr_status
));
993 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
995 mempool_free(io_req
, fnic
->io_req_pool
);
997 cmd_trace
= ((u64
)hdr_status
<< 56) |
998 (u64
)icmnd_cmpl
->scsi_status
<< 48 |
999 (u64
)icmnd_cmpl
->flags
<< 40 | (u64
)sc
->cmnd
[0] << 32 |
1000 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
1001 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5];
1003 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler
,
1004 sc
->device
->host
->host_no
, id
, sc
,
1005 ((u64
)icmnd_cmpl
->_resvd0
[1] << 56 |
1006 (u64
)icmnd_cmpl
->_resvd0
[0] << 48 |
1007 jiffies_to_msecs(jiffies
- start_time
)),
1009 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1011 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
) {
1012 fnic
->lport
->host_stats
.fcp_input_requests
++;
1013 fnic
->fcp_input_bytes
+= xfer_len
;
1014 } else if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
1015 fnic
->lport
->host_stats
.fcp_output_requests
++;
1016 fnic
->fcp_output_bytes
+= xfer_len
;
1018 fnic
->lport
->host_stats
.fcp_control_requests
++;
1020 atomic64_dec(&fnic_stats
->io_stats
.active_ios
);
1021 if (atomic64_read(&fnic
->io_cmpl_skip
))
1022 atomic64_dec(&fnic
->io_cmpl_skip
);
1024 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1027 io_duration_time
= jiffies_to_msecs(jiffies
) - jiffies_to_msecs(io_req
->start_time
);
1029 if(io_duration_time
<= 10)
1030 atomic64_inc(&fnic_stats
->io_stats
.io_btw_0_to_10_msec
);
1031 else if(io_duration_time
<= 100)
1032 atomic64_inc(&fnic_stats
->io_stats
.io_btw_10_to_100_msec
);
1033 else if(io_duration_time
<= 500)
1034 atomic64_inc(&fnic_stats
->io_stats
.io_btw_100_to_500_msec
);
1035 else if(io_duration_time
<= 5000)
1036 atomic64_inc(&fnic_stats
->io_stats
.io_btw_500_to_5000_msec
);
1037 else if(io_duration_time
<= 10000)
1038 atomic64_inc(&fnic_stats
->io_stats
.io_btw_5000_to_10000_msec
);
1039 else if(io_duration_time
<= 30000)
1040 atomic64_inc(&fnic_stats
->io_stats
.io_btw_10000_to_30000_msec
);
1042 atomic64_inc(&fnic_stats
->io_stats
.io_greater_than_30000_msec
);
1044 if(io_duration_time
> atomic64_read(&fnic_stats
->io_stats
.current_max_io_time
))
1045 atomic64_set(&fnic_stats
->io_stats
.current_max_io_time
, io_duration_time
);
1048 /* Call SCSI completion function to complete the IO */
1053 /* fnic_fcpio_itmf_cmpl_handler
1054 * Routine to handle itmf completions
1056 static void fnic_fcpio_itmf_cmpl_handler(struct fnic
*fnic
,
1057 struct fcpio_fw_req
*desc
)
1061 struct fcpio_tag tag
;
1063 struct scsi_cmnd
*sc
;
1064 struct fnic_io_req
*io_req
;
1065 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
1066 struct abort_stats
*abts_stats
= &fnic
->fnic_stats
.abts_stats
;
1067 struct terminate_stats
*term_stats
= &fnic
->fnic_stats
.term_stats
;
1068 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1069 unsigned long flags
;
1070 spinlock_t
*io_lock
;
1071 unsigned long start_time
;
1073 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
1074 fcpio_tag_id_dec(&tag
, &id
);
1076 if ((id
& FNIC_TAG_MASK
) >= fnic
->fnic_max_tag_id
) {
1077 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1078 "Tag out of range tag %x hdr status = %s\n",
1079 id
, fnic_fcpio_status_to_str(hdr_status
));
1083 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
& FNIC_TAG_MASK
);
1086 atomic64_inc(&fnic_stats
->io_stats
.sc_null
);
1087 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1088 "itmf_cmpl sc is null - hdr status = %s tag = 0x%x\n",
1089 fnic_fcpio_status_to_str(hdr_status
), id
);
1092 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1093 spin_lock_irqsave(io_lock
, flags
);
1094 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1095 WARN_ON_ONCE(!io_req
);
1097 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
1098 spin_unlock_irqrestore(io_lock
, flags
);
1099 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
1100 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1101 "itmf_cmpl io_req is null - "
1102 "hdr status = %s tag = 0x%x sc 0x%p\n",
1103 fnic_fcpio_status_to_str(hdr_status
), id
, sc
);
1106 start_time
= io_req
->start_time
;
1108 if ((id
& FNIC_TAG_ABORT
) && (id
& FNIC_TAG_DEV_RST
)) {
1109 /* Abort and terminate completion of device reset req */
1110 /* REVISIT : Add asserts about various flags */
1111 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1112 "dev reset abts cmpl recd. id %x status %s\n",
1113 id
, fnic_fcpio_status_to_str(hdr_status
));
1114 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
1115 CMD_ABTS_STATUS(sc
) = hdr_status
;
1116 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1117 if (io_req
->abts_done
)
1118 complete(io_req
->abts_done
);
1119 spin_unlock_irqrestore(io_lock
, flags
);
1120 } else if (id
& FNIC_TAG_ABORT
) {
1121 /* Completion of abort cmd */
1122 switch (hdr_status
) {
1126 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1127 atomic64_inc(&abts_stats
->abort_fw_timeouts
);
1130 &term_stats
->terminate_fw_timeouts
);
1132 case FCPIO_ITMF_REJECTED
:
1133 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
1134 "abort reject recd. id %d\n",
1135 (int)(id
& FNIC_TAG_MASK
));
1137 case FCPIO_IO_NOT_FOUND
:
1138 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1139 atomic64_inc(&abts_stats
->abort_io_not_found
);
1142 &term_stats
->terminate_io_not_found
);
1145 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1146 atomic64_inc(&abts_stats
->abort_failures
);
1149 &term_stats
->terminate_failures
);
1152 if (CMD_STATE(sc
) != FNIC_IOREQ_ABTS_PENDING
) {
1153 /* This is a late completion. Ignore it */
1154 spin_unlock_irqrestore(io_lock
, flags
);
1158 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_DONE
;
1159 CMD_ABTS_STATUS(sc
) = hdr_status
;
1161 /* If the status is IO not found consider it as success */
1162 if (hdr_status
== FCPIO_IO_NOT_FOUND
)
1163 CMD_ABTS_STATUS(sc
) = FCPIO_SUCCESS
;
1165 if (!(CMD_FLAGS(sc
) & (FNIC_IO_ABORTED
| FNIC_IO_DONE
)))
1166 atomic64_inc(&misc_stats
->no_icmnd_itmf_cmpls
);
1168 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1169 "abts cmpl recd. id %d status %s\n",
1170 (int)(id
& FNIC_TAG_MASK
),
1171 fnic_fcpio_status_to_str(hdr_status
));
1174 * If scsi_eh thread is blocked waiting for abts to complete,
1175 * signal completion to it. IO will be cleaned in the thread
1176 * else clean it in this context
1178 if (io_req
->abts_done
) {
1179 complete(io_req
->abts_done
);
1180 spin_unlock_irqrestore(io_lock
, flags
);
1182 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1183 "abts cmpl, completing IO\n");
1185 sc
->result
= (DID_ERROR
<< 16);
1187 spin_unlock_irqrestore(io_lock
, flags
);
1189 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1190 mempool_free(io_req
, fnic
->io_req_pool
);
1191 if (sc
->scsi_done
) {
1192 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1193 sc
->device
->host
->host_no
, id
,
1195 jiffies_to_msecs(jiffies
- start_time
),
1197 (((u64
)hdr_status
<< 40) |
1198 (u64
)sc
->cmnd
[0] << 32 |
1199 (u64
)sc
->cmnd
[2] << 24 |
1200 (u64
)sc
->cmnd
[3] << 16 |
1201 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1202 (((u64
)CMD_FLAGS(sc
) << 32) |
1205 atomic64_dec(&fnic_stats
->io_stats
.active_ios
);
1206 if (atomic64_read(&fnic
->io_cmpl_skip
))
1207 atomic64_dec(&fnic
->io_cmpl_skip
);
1209 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1213 } else if (id
& FNIC_TAG_DEV_RST
) {
1214 /* Completion of device reset */
1215 CMD_LR_STATUS(sc
) = hdr_status
;
1216 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1217 spin_unlock_irqrestore(io_lock
, flags
);
1218 CMD_FLAGS(sc
) |= FNIC_DEV_RST_ABTS_PENDING
;
1219 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1220 sc
->device
->host
->host_no
, id
, sc
,
1221 jiffies_to_msecs(jiffies
- start_time
),
1223 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1224 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1225 "Terminate pending "
1226 "dev reset cmpl recd. id %d status %s\n",
1227 (int)(id
& FNIC_TAG_MASK
),
1228 fnic_fcpio_status_to_str(hdr_status
));
1231 if (CMD_FLAGS(sc
) & FNIC_DEV_RST_TIMED_OUT
) {
1232 /* Need to wait for terminate completion */
1233 spin_unlock_irqrestore(io_lock
, flags
);
1234 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1235 sc
->device
->host
->host_no
, id
, sc
,
1236 jiffies_to_msecs(jiffies
- start_time
),
1238 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1239 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1240 "dev reset cmpl recd after time out. "
1241 "id %d status %s\n",
1242 (int)(id
& FNIC_TAG_MASK
),
1243 fnic_fcpio_status_to_str(hdr_status
));
1246 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
1247 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1248 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1249 "dev reset cmpl recd. id %d status %s\n",
1250 (int)(id
& FNIC_TAG_MASK
),
1251 fnic_fcpio_status_to_str(hdr_status
));
1252 if (io_req
->dr_done
)
1253 complete(io_req
->dr_done
);
1254 spin_unlock_irqrestore(io_lock
, flags
);
1257 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1258 "Unexpected itmf io state %s tag %x\n",
1259 fnic_ioreq_state_to_str(CMD_STATE(sc
)), id
);
1260 spin_unlock_irqrestore(io_lock
, flags
);
1266 * fnic_fcpio_cmpl_handler
1267 * Routine to service the cq for wq_copy
1269 static int fnic_fcpio_cmpl_handler(struct vnic_dev
*vdev
,
1270 unsigned int cq_index
,
1271 struct fcpio_fw_req
*desc
)
1273 struct fnic
*fnic
= vnic_dev_priv(vdev
);
1275 switch (desc
->hdr
.type
) {
1276 case FCPIO_ICMND_CMPL
: /* fw completed a command */
1277 case FCPIO_ITMF_CMPL
: /* fw completed itmf (abort cmd, lun reset)*/
1278 case FCPIO_FLOGI_REG_CMPL
: /* fw completed flogi_reg */
1279 case FCPIO_FLOGI_FIP_REG_CMPL
: /* fw completed flogi_fip_reg */
1280 case FCPIO_RESET_CMPL
: /* fw completed reset */
1281 atomic64_dec(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
1287 switch (desc
->hdr
.type
) {
1288 case FCPIO_ACK
: /* fw copied copy wq desc to its queue */
1289 fnic_fcpio_ack_handler(fnic
, cq_index
, desc
);
1292 case FCPIO_ICMND_CMPL
: /* fw completed a command */
1293 fnic_fcpio_icmnd_cmpl_handler(fnic
, desc
);
1296 case FCPIO_ITMF_CMPL
: /* fw completed itmf (abort cmd, lun reset)*/
1297 fnic_fcpio_itmf_cmpl_handler(fnic
, desc
);
1300 case FCPIO_FLOGI_REG_CMPL
: /* fw completed flogi_reg */
1301 case FCPIO_FLOGI_FIP_REG_CMPL
: /* fw completed flogi_fip_reg */
1302 fnic_fcpio_flogi_reg_cmpl_handler(fnic
, desc
);
1305 case FCPIO_RESET_CMPL
: /* fw completed reset */
1306 fnic_fcpio_fw_reset_cmpl_handler(fnic
, desc
);
1310 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1311 "firmware completion type %d\n",
1320 * fnic_wq_copy_cmpl_handler
1321 * Routine to process wq copy
1323 int fnic_wq_copy_cmpl_handler(struct fnic
*fnic
, int copy_work_to_do
)
1325 unsigned int wq_work_done
= 0;
1326 unsigned int i
, cq_index
;
1327 unsigned int cur_work_done
;
1328 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1329 u64 start_jiffies
= 0;
1330 u64 end_jiffies
= 0;
1331 u64 delta_jiffies
= 0;
1334 for (i
= 0; i
< fnic
->wq_copy_count
; i
++) {
1335 cq_index
= i
+ fnic
->raw_wq_count
+ fnic
->rq_count
;
1337 start_jiffies
= jiffies
;
1338 cur_work_done
= vnic_cq_copy_service(&fnic
->cq
[cq_index
],
1339 fnic_fcpio_cmpl_handler
,
1341 end_jiffies
= jiffies
;
1343 wq_work_done
+= cur_work_done
;
1344 delta_jiffies
= end_jiffies
- start_jiffies
;
1346 (u64
) atomic64_read(&misc_stats
->max_isr_jiffies
)) {
1347 atomic64_set(&misc_stats
->max_isr_jiffies
,
1349 delta_ms
= jiffies_to_msecs(delta_jiffies
);
1350 atomic64_set(&misc_stats
->max_isr_time_ms
, delta_ms
);
1351 atomic64_set(&misc_stats
->corr_work_done
,
1355 return wq_work_done
;
1358 static void fnic_cleanup_io(struct fnic
*fnic
, int exclude_id
)
1361 struct fnic_io_req
*io_req
;
1362 unsigned long flags
= 0;
1363 struct scsi_cmnd
*sc
;
1364 spinlock_t
*io_lock
;
1365 unsigned long start_time
= 0;
1366 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
1368 for (i
= 0; i
< fnic
->fnic_max_tag_id
; i
++) {
1369 if (i
== exclude_id
)
1372 io_lock
= fnic_io_lock_tag(fnic
, i
);
1373 spin_lock_irqsave(io_lock
, flags
);
1374 sc
= scsi_host_find_tag(fnic
->lport
->host
, i
);
1376 spin_unlock_irqrestore(io_lock
, flags
);
1380 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1381 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1382 !(CMD_FLAGS(sc
) & FNIC_DEV_RST_DONE
)) {
1384 * We will be here only when FW completes reset
1385 * without sending completions for outstanding ios.
1387 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1388 if (io_req
&& io_req
->dr_done
)
1389 complete(io_req
->dr_done
);
1390 else if (io_req
&& io_req
->abts_done
)
1391 complete(io_req
->abts_done
);
1392 spin_unlock_irqrestore(io_lock
, flags
);
1394 } else if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1395 spin_unlock_irqrestore(io_lock
, flags
);
1399 spin_unlock_irqrestore(io_lock
, flags
);
1400 goto cleanup_scsi_cmd
;
1405 spin_unlock_irqrestore(io_lock
, flags
);
1408 * If there is a scsi_cmnd associated with this io_req, then
1409 * free the corresponding state
1411 start_time
= io_req
->start_time
;
1412 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1413 mempool_free(io_req
, fnic
->io_req_pool
);
1416 sc
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
1417 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1418 "%s: tag:0x%x : sc:0x%p duration = %lu DID_TRANSPORT_DISRUPTED\n",
1419 __func__
, sc
->request
->tag
, sc
,
1420 (jiffies
- start_time
));
1422 if (atomic64_read(&fnic
->io_cmpl_skip
))
1423 atomic64_dec(&fnic
->io_cmpl_skip
);
1425 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1427 /* Complete the command to SCSI */
1428 if (sc
->scsi_done
) {
1429 if (!(CMD_FLAGS(sc
) & FNIC_IO_ISSUED
))
1430 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1431 "Calling done for IO not issued to fw: tag:0x%x sc:0x%p\n",
1432 sc
->request
->tag
, sc
);
1434 FNIC_TRACE(fnic_cleanup_io
,
1435 sc
->device
->host
->host_no
, i
, sc
,
1436 jiffies_to_msecs(jiffies
- start_time
),
1437 0, ((u64
)sc
->cmnd
[0] << 32 |
1438 (u64
)sc
->cmnd
[2] << 24 |
1439 (u64
)sc
->cmnd
[3] << 16 |
1440 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1441 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1448 void fnic_wq_copy_cleanup_handler(struct vnic_wq_copy
*wq
,
1449 struct fcpio_host_req
*desc
)
1452 struct fnic
*fnic
= vnic_dev_priv(wq
->vdev
);
1453 struct fnic_io_req
*io_req
;
1454 struct scsi_cmnd
*sc
;
1455 unsigned long flags
;
1456 spinlock_t
*io_lock
;
1457 unsigned long start_time
= 0;
1459 /* get the tag reference */
1460 fcpio_tag_id_dec(&desc
->hdr
.tag
, &id
);
1461 id
&= FNIC_TAG_MASK
;
1463 if (id
>= fnic
->fnic_max_tag_id
)
1466 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
);
1470 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1471 spin_lock_irqsave(io_lock
, flags
);
1473 /* Get the IO context which this desc refers to */
1474 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1476 /* fnic interrupts are turned off by now */
1479 spin_unlock_irqrestore(io_lock
, flags
);
1480 goto wq_copy_cleanup_scsi_cmd
;
1485 spin_unlock_irqrestore(io_lock
, flags
);
1487 start_time
= io_req
->start_time
;
1488 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1489 mempool_free(io_req
, fnic
->io_req_pool
);
1491 wq_copy_cleanup_scsi_cmd
:
1492 sc
->result
= DID_NO_CONNECT
<< 16;
1493 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
, "wq_copy_cleanup_handler:"
1494 " DID_NO_CONNECT\n");
1496 if (sc
->scsi_done
) {
1497 FNIC_TRACE(fnic_wq_copy_cleanup_handler
,
1498 sc
->device
->host
->host_no
, id
, sc
,
1499 jiffies_to_msecs(jiffies
- start_time
),
1500 0, ((u64
)sc
->cmnd
[0] << 32 |
1501 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
1502 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1503 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1509 static inline int fnic_queue_abort_io_req(struct fnic
*fnic
, int tag
,
1510 u32 task_req
, u8
*fc_lun
,
1511 struct fnic_io_req
*io_req
)
1513 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
1514 struct Scsi_Host
*host
= fnic
->lport
->host
;
1515 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1516 unsigned long flags
;
1518 spin_lock_irqsave(host
->host_lock
, flags
);
1519 if (unlikely(fnic_chk_state_flags_locked(fnic
,
1520 FNIC_FLAGS_IO_BLOCKED
))) {
1521 spin_unlock_irqrestore(host
->host_lock
, flags
);
1524 atomic_inc(&fnic
->in_flight
);
1525 spin_unlock_irqrestore(host
->host_lock
, flags
);
1527 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
1529 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
1530 free_wq_copy_descs(fnic
, wq
);
1532 if (!vnic_wq_copy_desc_avail(wq
)) {
1533 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
1534 atomic_dec(&fnic
->in_flight
);
1535 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1536 "fnic_queue_abort_io_req: failure: no descriptors\n");
1537 atomic64_inc(&misc_stats
->abts_cpwq_alloc_failures
);
1540 fnic_queue_wq_copy_desc_itmf(wq
, tag
| FNIC_TAG_ABORT
,
1541 0, task_req
, tag
, fc_lun
, io_req
->port_id
,
1542 fnic
->config
.ra_tov
, fnic
->config
.ed_tov
);
1544 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
1545 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
1546 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
1547 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
1548 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
1550 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
1551 atomic_dec(&fnic
->in_flight
);
1556 static void fnic_rport_exch_reset(struct fnic
*fnic
, u32 port_id
)
1561 struct fnic_io_req
*io_req
;
1562 spinlock_t
*io_lock
;
1563 unsigned long flags
;
1564 struct scsi_cmnd
*sc
;
1565 struct reset_stats
*reset_stats
= &fnic
->fnic_stats
.reset_stats
;
1566 struct terminate_stats
*term_stats
= &fnic
->fnic_stats
.term_stats
;
1567 struct scsi_lun fc_lun
;
1568 enum fnic_ioreq_state old_ioreq_state
;
1570 FNIC_SCSI_DBG(KERN_DEBUG
,
1572 "fnic_rport_exch_reset called portid 0x%06x\n",
1575 if (fnic
->in_remove
)
1578 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
1580 io_lock
= fnic_io_lock_tag(fnic
, tag
);
1581 spin_lock_irqsave(io_lock
, flags
);
1582 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
1584 spin_unlock_irqrestore(io_lock
, flags
);
1588 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1590 if (!io_req
|| io_req
->port_id
!= port_id
) {
1591 spin_unlock_irqrestore(io_lock
, flags
);
1595 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1596 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
1597 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1598 "fnic_rport_exch_reset dev rst not pending sc 0x%p\n",
1600 spin_unlock_irqrestore(io_lock
, flags
);
1605 * Found IO that is still pending with firmware and
1606 * belongs to rport that went away
1608 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1609 spin_unlock_irqrestore(io_lock
, flags
);
1612 if (io_req
->abts_done
) {
1613 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1614 "fnic_rport_exch_reset: io_req->abts_done is set "
1616 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
1619 if (!(CMD_FLAGS(sc
) & FNIC_IO_ISSUED
)) {
1620 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1622 "IO not yet issued %p tag 0x%x flags "
1624 sc
, tag
, CMD_FLAGS(sc
), CMD_STATE(sc
));
1626 old_ioreq_state
= CMD_STATE(sc
);
1627 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1628 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1629 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1630 atomic64_inc(&reset_stats
->device_reset_terminates
);
1631 abt_tag
= (tag
| FNIC_TAG_DEV_RST
);
1632 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1633 "fnic_rport_exch_reset dev rst sc 0x%p\n",
1637 BUG_ON(io_req
->abts_done
);
1639 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1640 "fnic_rport_reset_exch: Issuing abts\n");
1642 spin_unlock_irqrestore(io_lock
, flags
);
1644 /* Now queue the abort command to firmware */
1645 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1647 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
1648 FCPIO_ITMF_ABT_TASK_TERM
,
1649 fc_lun
.scsi_lun
, io_req
)) {
1651 * Revert the cmd state back to old state, if
1652 * it hasn't changed in between. This cmd will get
1653 * aborted later by scsi_eh, or cleaned up during
1656 spin_lock_irqsave(io_lock
, flags
);
1657 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1658 CMD_STATE(sc
) = old_ioreq_state
;
1659 spin_unlock_irqrestore(io_lock
, flags
);
1661 spin_lock_irqsave(io_lock
, flags
);
1662 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
1663 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
1665 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
1666 spin_unlock_irqrestore(io_lock
, flags
);
1667 atomic64_inc(&term_stats
->terminates
);
1671 if (term_cnt
> atomic64_read(&term_stats
->max_terminates
))
1672 atomic64_set(&term_stats
->max_terminates
, term_cnt
);
1676 void fnic_terminate_rport_io(struct fc_rport
*rport
)
1681 struct fnic_io_req
*io_req
;
1682 spinlock_t
*io_lock
;
1683 unsigned long flags
;
1684 struct scsi_cmnd
*sc
;
1685 struct scsi_lun fc_lun
;
1686 struct fc_rport_libfc_priv
*rdata
;
1687 struct fc_lport
*lport
;
1689 struct fc_rport
*cmd_rport
;
1690 struct reset_stats
*reset_stats
;
1691 struct terminate_stats
*term_stats
;
1692 enum fnic_ioreq_state old_ioreq_state
;
1695 printk(KERN_ERR
"fnic_terminate_rport_io: rport is NULL\n");
1698 rdata
= rport
->dd_data
;
1701 printk(KERN_ERR
"fnic_terminate_rport_io: rdata is NULL\n");
1704 lport
= rdata
->local_port
;
1707 printk(KERN_ERR
"fnic_terminate_rport_io: lport is NULL\n");
1710 fnic
= lport_priv(lport
);
1711 FNIC_SCSI_DBG(KERN_DEBUG
,
1712 fnic
->lport
->host
, "fnic_terminate_rport_io called"
1713 " wwpn 0x%llx, wwnn0x%llx, rport 0x%p, portid 0x%06x\n",
1714 rport
->port_name
, rport
->node_name
, rport
,
1717 if (fnic
->in_remove
)
1720 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
1721 term_stats
= &fnic
->fnic_stats
.term_stats
;
1723 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
1725 io_lock
= fnic_io_lock_tag(fnic
, tag
);
1726 spin_lock_irqsave(io_lock
, flags
);
1727 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
1729 spin_unlock_irqrestore(io_lock
, flags
);
1733 cmd_rport
= starget_to_rport(scsi_target(sc
->device
));
1734 if (rport
!= cmd_rport
) {
1735 spin_unlock_irqrestore(io_lock
, flags
);
1739 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1741 if (!io_req
|| rport
!= cmd_rport
) {
1742 spin_unlock_irqrestore(io_lock
, flags
);
1746 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1747 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
1748 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1749 "fnic_terminate_rport_io dev rst not pending sc 0x%p\n",
1751 spin_unlock_irqrestore(io_lock
, flags
);
1755 * Found IO that is still pending with firmware and
1756 * belongs to rport that went away
1758 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1759 spin_unlock_irqrestore(io_lock
, flags
);
1762 if (io_req
->abts_done
) {
1763 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1764 "fnic_terminate_rport_io: io_req->abts_done is set "
1766 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
1768 if (!(CMD_FLAGS(sc
) & FNIC_IO_ISSUED
)) {
1769 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
1770 "fnic_terminate_rport_io "
1771 "IO not yet issued %p tag 0x%x flags "
1773 sc
, tag
, CMD_FLAGS(sc
), CMD_STATE(sc
));
1775 old_ioreq_state
= CMD_STATE(sc
);
1776 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1777 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1778 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1779 atomic64_inc(&reset_stats
->device_reset_terminates
);
1780 abt_tag
= (tag
| FNIC_TAG_DEV_RST
);
1781 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1782 "fnic_terminate_rport_io dev rst sc 0x%p\n", sc
);
1785 BUG_ON(io_req
->abts_done
);
1787 FNIC_SCSI_DBG(KERN_DEBUG
,
1789 "fnic_terminate_rport_io: Issuing abts\n");
1791 spin_unlock_irqrestore(io_lock
, flags
);
1793 /* Now queue the abort command to firmware */
1794 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1796 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
1797 FCPIO_ITMF_ABT_TASK_TERM
,
1798 fc_lun
.scsi_lun
, io_req
)) {
1800 * Revert the cmd state back to old state, if
1801 * it hasn't changed in between. This cmd will get
1802 * aborted later by scsi_eh, or cleaned up during
1805 spin_lock_irqsave(io_lock
, flags
);
1806 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1807 CMD_STATE(sc
) = old_ioreq_state
;
1808 spin_unlock_irqrestore(io_lock
, flags
);
1810 spin_lock_irqsave(io_lock
, flags
);
1811 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
1812 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
1814 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
1815 spin_unlock_irqrestore(io_lock
, flags
);
1816 atomic64_inc(&term_stats
->terminates
);
1820 if (term_cnt
> atomic64_read(&term_stats
->max_terminates
))
1821 atomic64_set(&term_stats
->max_terminates
, term_cnt
);
1826 * This function is exported to SCSI for sending abort cmnds.
1827 * A SCSI IO is represented by a io_req in the driver.
1828 * The ioreq is linked to the SCSI Cmd, thus a link with the ULP's IO.
1830 int fnic_abort_cmd(struct scsi_cmnd
*sc
)
1832 struct fc_lport
*lp
;
1834 struct fnic_io_req
*io_req
= NULL
;
1835 struct fc_rport
*rport
;
1836 spinlock_t
*io_lock
;
1837 unsigned long flags
;
1838 unsigned long start_time
= 0;
1841 struct scsi_lun fc_lun
;
1842 struct fnic_stats
*fnic_stats
;
1843 struct abort_stats
*abts_stats
;
1844 struct terminate_stats
*term_stats
;
1845 enum fnic_ioreq_state old_ioreq_state
;
1847 unsigned long abt_issued_time
;
1848 DECLARE_COMPLETION_ONSTACK(tm_done
);
1850 /* Wait for rport to unblock */
1851 fc_block_scsi_eh(sc
);
1853 /* Get local-port, check ready and link up */
1854 lp
= shost_priv(sc
->device
->host
);
1856 fnic
= lport_priv(lp
);
1857 fnic_stats
= &fnic
->fnic_stats
;
1858 abts_stats
= &fnic
->fnic_stats
.abts_stats
;
1859 term_stats
= &fnic
->fnic_stats
.term_stats
;
1861 rport
= starget_to_rport(scsi_target(sc
->device
));
1862 tag
= sc
->request
->tag
;
1863 FNIC_SCSI_DBG(KERN_DEBUG
,
1865 "Abort Cmd called FCID 0x%x, LUN 0x%llx TAG %x flags %x\n",
1866 rport
->port_id
, sc
->device
->lun
, tag
, CMD_FLAGS(sc
));
1868 CMD_FLAGS(sc
) = FNIC_NO_FLAGS
;
1870 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
)) {
1872 goto fnic_abort_cmd_end
;
1876 * Avoid a race between SCSI issuing the abort and the device
1877 * completing the command.
1879 * If the command is already completed by the fw cmpl code,
1880 * we just return SUCCESS from here. This means that the abort
1881 * succeeded. In the SCSI ML, since the timeout for command has
1882 * happened, the completion wont actually complete the command
1883 * and it will be considered as an aborted command
1885 * The CMD_SP will not be cleared except while holding io_req_lock.
1887 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1888 spin_lock_irqsave(io_lock
, flags
);
1889 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1891 spin_unlock_irqrestore(io_lock
, flags
);
1892 goto fnic_abort_cmd_end
;
1895 io_req
->abts_done
= &tm_done
;
1897 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1898 spin_unlock_irqrestore(io_lock
, flags
);
1902 abt_issued_time
= jiffies_to_msecs(jiffies
) - jiffies_to_msecs(io_req
->start_time
);
1903 if (abt_issued_time
<= 6000)
1904 atomic64_inc(&abts_stats
->abort_issued_btw_0_to_6_sec
);
1905 else if (abt_issued_time
> 6000 && abt_issued_time
<= 20000)
1906 atomic64_inc(&abts_stats
->abort_issued_btw_6_to_20_sec
);
1907 else if (abt_issued_time
> 20000 && abt_issued_time
<= 30000)
1908 atomic64_inc(&abts_stats
->abort_issued_btw_20_to_30_sec
);
1909 else if (abt_issued_time
> 30000 && abt_issued_time
<= 40000)
1910 atomic64_inc(&abts_stats
->abort_issued_btw_30_to_40_sec
);
1911 else if (abt_issued_time
> 40000 && abt_issued_time
<= 50000)
1912 atomic64_inc(&abts_stats
->abort_issued_btw_40_to_50_sec
);
1913 else if (abt_issued_time
> 50000 && abt_issued_time
<= 60000)
1914 atomic64_inc(&abts_stats
->abort_issued_btw_50_to_60_sec
);
1916 atomic64_inc(&abts_stats
->abort_issued_greater_than_60_sec
);
1918 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
1919 "CBD Opcode: %02x Abort issued time: %lu msec\n", sc
->cmnd
[0], abt_issued_time
);
1921 * Command is still pending, need to abort it
1922 * If the firmware completes the command after this point,
1923 * the completion wont be done till mid-layer, since abort
1924 * has already started.
1926 old_ioreq_state
= CMD_STATE(sc
);
1927 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1928 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1930 spin_unlock_irqrestore(io_lock
, flags
);
1933 * Check readiness of the remote port. If the path to remote
1934 * port is up, then send abts to the remote port to terminate
1935 * the IO. Else, just locally terminate the IO in the firmware
1937 if (fc_remote_port_chkready(rport
) == 0)
1938 task_req
= FCPIO_ITMF_ABT_TASK
;
1940 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
1941 task_req
= FCPIO_ITMF_ABT_TASK_TERM
;
1944 /* Now queue the abort command to firmware */
1945 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1947 if (fnic_queue_abort_io_req(fnic
, sc
->request
->tag
, task_req
,
1948 fc_lun
.scsi_lun
, io_req
)) {
1949 spin_lock_irqsave(io_lock
, flags
);
1950 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1951 CMD_STATE(sc
) = old_ioreq_state
;
1952 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1954 io_req
->abts_done
= NULL
;
1955 spin_unlock_irqrestore(io_lock
, flags
);
1957 goto fnic_abort_cmd_end
;
1959 if (task_req
== FCPIO_ITMF_ABT_TASK
) {
1960 CMD_FLAGS(sc
) |= FNIC_IO_ABTS_ISSUED
;
1961 atomic64_inc(&fnic_stats
->abts_stats
.aborts
);
1963 CMD_FLAGS(sc
) |= FNIC_IO_TERM_ISSUED
;
1964 atomic64_inc(&fnic_stats
->term_stats
.terminates
);
1968 * We queued an abort IO, wait for its completion.
1969 * Once the firmware completes the abort command, it will
1970 * wake up this thread.
1973 wait_for_completion_timeout(&tm_done
,
1975 (2 * fnic
->config
.ra_tov
+
1976 fnic
->config
.ed_tov
));
1978 /* Check the abort status */
1979 spin_lock_irqsave(io_lock
, flags
);
1981 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1983 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
1984 spin_unlock_irqrestore(io_lock
, flags
);
1985 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
1987 goto fnic_abort_cmd_end
;
1989 io_req
->abts_done
= NULL
;
1991 /* fw did not complete abort, timed out */
1992 if (CMD_ABTS_STATUS(sc
) == FCPIO_INVALID_CODE
) {
1993 spin_unlock_irqrestore(io_lock
, flags
);
1994 if (task_req
== FCPIO_ITMF_ABT_TASK
) {
1995 atomic64_inc(&abts_stats
->abort_drv_timeouts
);
1997 atomic64_inc(&term_stats
->terminate_drv_timeouts
);
1999 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_TIMED_OUT
;
2001 goto fnic_abort_cmd_end
;
2004 /* IO out of order */
2006 if (!(CMD_FLAGS(sc
) & (FNIC_IO_ABORTED
| FNIC_IO_DONE
))) {
2007 spin_unlock_irqrestore(io_lock
, flags
);
2008 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2009 "Issuing Host reset due to out of order IO\n");
2012 goto fnic_abort_cmd_end
;
2015 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
2017 start_time
= io_req
->start_time
;
2019 * firmware completed the abort, check the status,
2020 * free the io_req if successful. If abort fails,
2021 * Device reset will clean the I/O.
2023 if (CMD_ABTS_STATUS(sc
) == FCPIO_SUCCESS
)
2027 spin_unlock_irqrestore(io_lock
, flags
);
2028 goto fnic_abort_cmd_end
;
2031 spin_unlock_irqrestore(io_lock
, flags
);
2033 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
2034 mempool_free(io_req
, fnic
->io_req_pool
);
2036 if (sc
->scsi_done
) {
2037 /* Call SCSI completion function to complete the IO */
2038 sc
->result
= (DID_ABORT
<< 16);
2040 atomic64_dec(&fnic_stats
->io_stats
.active_ios
);
2041 if (atomic64_read(&fnic
->io_cmpl_skip
))
2042 atomic64_dec(&fnic
->io_cmpl_skip
);
2044 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
2048 FNIC_TRACE(fnic_abort_cmd
, sc
->device
->host
->host_no
,
2049 sc
->request
->tag
, sc
,
2050 jiffies_to_msecs(jiffies
- start_time
),
2051 0, ((u64
)sc
->cmnd
[0] << 32 |
2052 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
2053 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
2054 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
2056 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2057 "Returning from abort cmd type %x %s\n", task_req
,
2059 "SUCCESS" : "FAILED");
2063 static inline int fnic_queue_dr_io_req(struct fnic
*fnic
,
2064 struct scsi_cmnd
*sc
,
2065 struct fnic_io_req
*io_req
)
2067 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
2068 struct Scsi_Host
*host
= fnic
->lport
->host
;
2069 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
2070 struct scsi_lun fc_lun
;
2072 unsigned long intr_flags
;
2074 spin_lock_irqsave(host
->host_lock
, intr_flags
);
2075 if (unlikely(fnic_chk_state_flags_locked(fnic
,
2076 FNIC_FLAGS_IO_BLOCKED
))) {
2077 spin_unlock_irqrestore(host
->host_lock
, intr_flags
);
2080 atomic_inc(&fnic
->in_flight
);
2081 spin_unlock_irqrestore(host
->host_lock
, intr_flags
);
2083 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], intr_flags
);
2085 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
2086 free_wq_copy_descs(fnic
, wq
);
2088 if (!vnic_wq_copy_desc_avail(wq
)) {
2089 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2090 "queue_dr_io_req failure - no descriptors\n");
2091 atomic64_inc(&misc_stats
->devrst_cpwq_alloc_failures
);
2096 /* fill in the lun info */
2097 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2099 fnic_queue_wq_copy_desc_itmf(wq
, sc
->request
->tag
| FNIC_TAG_DEV_RST
,
2100 0, FCPIO_ITMF_LUN_RESET
, SCSI_NO_TAG
,
2101 fc_lun
.scsi_lun
, io_req
->port_id
,
2102 fnic
->config
.ra_tov
, fnic
->config
.ed_tov
);
2104 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
2105 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
2106 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
2107 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
2108 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
2111 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
2112 atomic_dec(&fnic
->in_flight
);
2118 * Clean up any pending aborts on the lun
2119 * For each outstanding IO on this lun, whose abort is not completed by fw,
2120 * issue a local abort. Wait for abort to complete. Return 0 if all commands
2121 * successfully aborted, 1 otherwise
2123 static int fnic_clean_pending_aborts(struct fnic
*fnic
,
2124 struct scsi_cmnd
*lr_sc
,
2129 struct fnic_io_req
*io_req
;
2130 spinlock_t
*io_lock
;
2131 unsigned long flags
;
2133 struct scsi_cmnd
*sc
;
2134 struct scsi_lun fc_lun
;
2135 struct scsi_device
*lun_dev
= lr_sc
->device
;
2136 DECLARE_COMPLETION_ONSTACK(tm_done
);
2137 enum fnic_ioreq_state old_ioreq_state
;
2139 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
2140 io_lock
= fnic_io_lock_tag(fnic
, tag
);
2141 spin_lock_irqsave(io_lock
, flags
);
2142 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
2144 * ignore this lun reset cmd if issued using new SC
2145 * or cmds that do not belong to this lun
2147 if (!sc
|| ((sc
== lr_sc
) && new_sc
) || sc
->device
!= lun_dev
) {
2148 spin_unlock_irqrestore(io_lock
, flags
);
2152 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2154 if (!io_req
|| sc
->device
!= lun_dev
) {
2155 spin_unlock_irqrestore(io_lock
, flags
);
2160 * Found IO that is still pending with firmware and
2161 * belongs to the LUN that we are resetting
2163 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2164 "Found IO in %s on lun\n",
2165 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2167 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
2168 spin_unlock_irqrestore(io_lock
, flags
);
2171 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
2172 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
2173 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2174 "%s dev rst not pending sc 0x%p\n", __func__
,
2176 spin_unlock_irqrestore(io_lock
, flags
);
2180 if (io_req
->abts_done
)
2181 shost_printk(KERN_ERR
, fnic
->lport
->host
,
2182 "%s: io_req->abts_done is set state is %s\n",
2183 __func__
, fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2184 old_ioreq_state
= CMD_STATE(sc
);
2186 * Any pending IO issued prior to reset is expected to be
2187 * in abts pending state, if not we need to set
2188 * FNIC_IOREQ_ABTS_PENDING to indicate the IO is abort pending.
2189 * When IO is completed, the IO will be handed over and
2190 * handled in this function.
2192 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
2194 BUG_ON(io_req
->abts_done
);
2197 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
2198 abt_tag
|= FNIC_TAG_DEV_RST
;
2199 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2200 "%s: dev rst sc 0x%p\n", __func__
, sc
);
2203 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
2204 io_req
->abts_done
= &tm_done
;
2205 spin_unlock_irqrestore(io_lock
, flags
);
2207 /* Now queue the abort command to firmware */
2208 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2210 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
2211 FCPIO_ITMF_ABT_TASK_TERM
,
2212 fc_lun
.scsi_lun
, io_req
)) {
2213 spin_lock_irqsave(io_lock
, flags
);
2214 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2216 io_req
->abts_done
= NULL
;
2217 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
2218 CMD_STATE(sc
) = old_ioreq_state
;
2219 spin_unlock_irqrestore(io_lock
, flags
);
2221 goto clean_pending_aborts_end
;
2223 spin_lock_irqsave(io_lock
, flags
);
2224 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
2225 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
2226 spin_unlock_irqrestore(io_lock
, flags
);
2228 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
2230 wait_for_completion_timeout(&tm_done
,
2232 (fnic
->config
.ed_tov
));
2234 /* Recheck cmd state to check if it is now aborted */
2235 spin_lock_irqsave(io_lock
, flags
);
2236 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2238 spin_unlock_irqrestore(io_lock
, flags
);
2239 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
2243 io_req
->abts_done
= NULL
;
2245 /* if abort is still pending with fw, fail */
2246 if (CMD_ABTS_STATUS(sc
) == FCPIO_INVALID_CODE
) {
2247 spin_unlock_irqrestore(io_lock
, flags
);
2248 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_DONE
;
2250 goto clean_pending_aborts_end
;
2252 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
2254 /* original sc used for lr is handled by dev reset code */
2257 spin_unlock_irqrestore(io_lock
, flags
);
2259 /* original sc used for lr is handled by dev reset code */
2261 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
2262 mempool_free(io_req
, fnic
->io_req_pool
);
2266 * Any IO is returned during reset, it needs to call scsi_done
2267 * to return the scsi_cmnd to upper layer.
2269 if (sc
->scsi_done
) {
2270 /* Set result to let upper SCSI layer retry */
2271 sc
->result
= DID_RESET
<< 16;
2276 schedule_timeout(msecs_to_jiffies(2 * fnic
->config
.ed_tov
));
2278 /* walk again to check, if IOs are still pending in fw */
2279 if (fnic_is_abts_pending(fnic
, lr_sc
))
2282 clean_pending_aborts_end
:
2287 * fnic_scsi_host_start_tag
2288 * Allocates tagid from host's tag list
2291 fnic_scsi_host_start_tag(struct fnic
*fnic
, struct scsi_cmnd
*sc
)
2293 struct request_queue
*q
= sc
->request
->q
;
2294 struct request
*dummy
;
2296 dummy
= blk_mq_alloc_request(q
, REQ_OP_WRITE
, BLK_MQ_REQ_NOWAIT
);
2300 sc
->tag
= sc
->request
->tag
= dummy
->tag
;
2301 sc
->host_scribble
= (unsigned char *)dummy
;
2307 * fnic_scsi_host_end_tag
2308 * frees tag allocated by fnic_scsi_host_start_tag.
2311 fnic_scsi_host_end_tag(struct fnic
*fnic
, struct scsi_cmnd
*sc
)
2313 struct request
*dummy
= (struct request
*)sc
->host_scribble
;
2315 blk_mq_free_request(dummy
);
2319 * SCSI Eh thread issues a Lun Reset when one or more commands on a LUN
2320 * fail to get aborted. It calls driver's eh_device_reset with a SCSI command
2323 int fnic_device_reset(struct scsi_cmnd
*sc
)
2325 struct fc_lport
*lp
;
2327 struct fnic_io_req
*io_req
= NULL
;
2328 struct fc_rport
*rport
;
2331 spinlock_t
*io_lock
;
2332 unsigned long flags
;
2333 unsigned long start_time
= 0;
2334 struct scsi_lun fc_lun
;
2335 struct fnic_stats
*fnic_stats
;
2336 struct reset_stats
*reset_stats
;
2338 DECLARE_COMPLETION_ONSTACK(tm_done
);
2339 int tag_gen_flag
= 0; /*to track tags allocated by fnic driver*/
2342 /* Wait for rport to unblock */
2343 fc_block_scsi_eh(sc
);
2345 /* Get local-port, check ready and link up */
2346 lp
= shost_priv(sc
->device
->host
);
2348 fnic
= lport_priv(lp
);
2349 fnic_stats
= &fnic
->fnic_stats
;
2350 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
2352 atomic64_inc(&reset_stats
->device_resets
);
2354 rport
= starget_to_rport(scsi_target(sc
->device
));
2355 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2356 "Device reset called FCID 0x%x, LUN 0x%llx sc 0x%p\n",
2357 rport
->port_id
, sc
->device
->lun
, sc
);
2359 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
))
2360 goto fnic_device_reset_end
;
2362 /* Check if remote port up */
2363 if (fc_remote_port_chkready(rport
)) {
2364 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
2365 goto fnic_device_reset_end
;
2368 CMD_FLAGS(sc
) = FNIC_DEVICE_RESET
;
2369 /* Allocate tag if not present */
2371 tag
= sc
->request
->tag
;
2372 if (unlikely(tag
< 0)) {
2374 * Really should fix the midlayer to pass in a proper
2375 * request for ioctls...
2377 tag
= fnic_scsi_host_start_tag(fnic
, sc
);
2378 if (unlikely(tag
== SCSI_NO_TAG
))
2379 goto fnic_device_reset_end
;
2383 io_lock
= fnic_io_lock_hash(fnic
, sc
);
2384 spin_lock_irqsave(io_lock
, flags
);
2385 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2388 * If there is a io_req attached to this command, then use it,
2389 * else allocate a new one.
2392 io_req
= mempool_alloc(fnic
->io_req_pool
, GFP_ATOMIC
);
2394 spin_unlock_irqrestore(io_lock
, flags
);
2395 goto fnic_device_reset_end
;
2397 memset(io_req
, 0, sizeof(*io_req
));
2398 io_req
->port_id
= rport
->port_id
;
2399 CMD_SP(sc
) = (char *)io_req
;
2401 io_req
->dr_done
= &tm_done
;
2402 CMD_STATE(sc
) = FNIC_IOREQ_CMD_PENDING
;
2403 CMD_LR_STATUS(sc
) = FCPIO_INVALID_CODE
;
2404 spin_unlock_irqrestore(io_lock
, flags
);
2406 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
, "TAG %x\n", tag
);
2409 * issue the device reset, if enqueue failed, clean up the ioreq
2410 * and break assoc with scsi cmd
2412 if (fnic_queue_dr_io_req(fnic
, sc
, io_req
)) {
2413 spin_lock_irqsave(io_lock
, flags
);
2414 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2416 io_req
->dr_done
= NULL
;
2417 goto fnic_device_reset_clean
;
2419 spin_lock_irqsave(io_lock
, flags
);
2420 CMD_FLAGS(sc
) |= FNIC_DEV_RST_ISSUED
;
2421 spin_unlock_irqrestore(io_lock
, flags
);
2424 * Wait on the local completion for LUN reset. The io_req may be
2425 * freed while we wait since we hold no lock.
2427 wait_for_completion_timeout(&tm_done
,
2428 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT
));
2430 spin_lock_irqsave(io_lock
, flags
);
2431 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2433 spin_unlock_irqrestore(io_lock
, flags
);
2434 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2435 "io_req is null tag 0x%x sc 0x%p\n", tag
, sc
);
2436 goto fnic_device_reset_end
;
2438 io_req
->dr_done
= NULL
;
2440 status
= CMD_LR_STATUS(sc
);
2443 * If lun reset not completed, bail out with failed. io_req
2444 * gets cleaned up during higher levels of EH
2446 if (status
== FCPIO_INVALID_CODE
) {
2447 atomic64_inc(&reset_stats
->device_reset_timeouts
);
2448 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2449 "Device reset timed out\n");
2450 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TIMED_OUT
;
2451 spin_unlock_irqrestore(io_lock
, flags
);
2452 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2454 * Issue abort and terminate on device reset request.
2455 * If q'ing of terminate fails, retry it after a delay.
2458 spin_lock_irqsave(io_lock
, flags
);
2459 if (CMD_FLAGS(sc
) & FNIC_DEV_RST_TERM_ISSUED
) {
2460 spin_unlock_irqrestore(io_lock
, flags
);
2463 spin_unlock_irqrestore(io_lock
, flags
);
2464 if (fnic_queue_abort_io_req(fnic
,
2465 tag
| FNIC_TAG_DEV_RST
,
2466 FCPIO_ITMF_ABT_TASK_TERM
,
2467 fc_lun
.scsi_lun
, io_req
)) {
2468 wait_for_completion_timeout(&tm_done
,
2469 msecs_to_jiffies(FNIC_ABT_TERM_DELAY_TIMEOUT
));
2471 spin_lock_irqsave(io_lock
, flags
);
2472 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
2473 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
2474 io_req
->abts_done
= &tm_done
;
2475 spin_unlock_irqrestore(io_lock
, flags
);
2476 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2477 "Abort and terminate issued on Device reset "
2478 "tag 0x%x sc 0x%p\n", tag
, sc
);
2483 spin_lock_irqsave(io_lock
, flags
);
2484 if (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_DONE
)) {
2485 spin_unlock_irqrestore(io_lock
, flags
);
2486 wait_for_completion_timeout(&tm_done
,
2487 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT
));
2490 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2491 io_req
->abts_done
= NULL
;
2492 goto fnic_device_reset_clean
;
2496 spin_unlock_irqrestore(io_lock
, flags
);
2499 /* Completed, but not successful, clean up the io_req, return fail */
2500 if (status
!= FCPIO_SUCCESS
) {
2501 spin_lock_irqsave(io_lock
, flags
);
2502 FNIC_SCSI_DBG(KERN_DEBUG
,
2504 "Device reset completed - failed\n");
2505 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2506 goto fnic_device_reset_clean
;
2510 * Clean up any aborts on this lun that have still not
2511 * completed. If any of these fail, then LUN reset fails.
2512 * clean_pending_aborts cleans all cmds on this lun except
2513 * the lun reset cmd. If all cmds get cleaned, the lun reset
2516 if (fnic_clean_pending_aborts(fnic
, sc
, new_sc
)) {
2517 spin_lock_irqsave(io_lock
, flags
);
2518 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2519 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2520 "Device reset failed"
2521 " since could not abort all IOs\n");
2522 goto fnic_device_reset_clean
;
2525 /* Clean lun reset command */
2526 spin_lock_irqsave(io_lock
, flags
);
2527 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2529 /* Completed, and successful */
2532 fnic_device_reset_clean
:
2536 spin_unlock_irqrestore(io_lock
, flags
);
2539 start_time
= io_req
->start_time
;
2540 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
2541 mempool_free(io_req
, fnic
->io_req_pool
);
2544 fnic_device_reset_end
:
2545 FNIC_TRACE(fnic_device_reset
, sc
->device
->host
->host_no
,
2546 sc
->request
->tag
, sc
,
2547 jiffies_to_msecs(jiffies
- start_time
),
2548 0, ((u64
)sc
->cmnd
[0] << 32 |
2549 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
2550 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
2551 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
2553 /* free tag if it is allocated */
2554 if (unlikely(tag_gen_flag
))
2555 fnic_scsi_host_end_tag(fnic
, sc
);
2557 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2558 "Returning from device reset %s\n",
2560 "SUCCESS" : "FAILED");
2563 atomic64_inc(&reset_stats
->device_reset_failures
);
2568 /* Clean up all IOs, clean up libFC local port */
2569 int fnic_reset(struct Scsi_Host
*shost
)
2571 struct fc_lport
*lp
;
2574 struct reset_stats
*reset_stats
;
2576 lp
= shost_priv(shost
);
2577 fnic
= lport_priv(lp
);
2578 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
2580 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2581 "fnic_reset called\n");
2583 atomic64_inc(&reset_stats
->fnic_resets
);
2586 * Reset local port, this will clean up libFC exchanges,
2587 * reset remote port sessions, and if link is up, begin flogi
2589 ret
= fc_lport_reset(lp
);
2591 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2592 "Returning from fnic reset %s\n",
2594 "SUCCESS" : "FAILED");
2597 atomic64_inc(&reset_stats
->fnic_reset_completions
);
2599 atomic64_inc(&reset_stats
->fnic_reset_failures
);
2605 * SCSI Error handling calls driver's eh_host_reset if all prior
2606 * error handling levels return FAILED. If host reset completes
2607 * successfully, and if link is up, then Fabric login begins.
2609 * Host Reset is the highest level of error recovery. If this fails, then
2610 * host is offlined by SCSI.
2613 int fnic_host_reset(struct scsi_cmnd
*sc
)
2616 unsigned long wait_host_tmo
;
2617 struct Scsi_Host
*shost
= sc
->device
->host
;
2618 struct fc_lport
*lp
= shost_priv(shost
);
2619 struct fnic
*fnic
= lport_priv(lp
);
2620 unsigned long flags
;
2622 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2623 if (fnic
->internal_reset_inprogress
== 0) {
2624 fnic
->internal_reset_inprogress
= 1;
2626 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2627 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2628 "host reset in progress skipping another host reset\n");
2631 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2634 * If fnic_reset is successful, wait for fabric login to complete
2635 * scsi-ml tries to send a TUR to every device if host reset is
2636 * successful, so before returning to scsi, fabric should be up
2638 ret
= (fnic_reset(shost
) == 0) ? SUCCESS
: FAILED
;
2639 if (ret
== SUCCESS
) {
2640 wait_host_tmo
= jiffies
+ FNIC_HOST_RESET_SETTLE_TIME
* HZ
;
2642 while (time_before(jiffies
, wait_host_tmo
)) {
2643 if ((lp
->state
== LPORT_ST_READY
) &&
2652 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2653 fnic
->internal_reset_inprogress
= 0;
2654 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2659 * This fxn is called from libFC when host is removed
2661 void fnic_scsi_abort_io(struct fc_lport
*lp
)
2664 unsigned long flags
;
2665 enum fnic_state old_state
;
2666 struct fnic
*fnic
= lport_priv(lp
);
2667 DECLARE_COMPLETION_ONSTACK(remove_wait
);
2669 /* Issue firmware reset for fnic, wait for reset to complete */
2671 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2672 if (unlikely(fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)) {
2673 /* fw reset is in progress, poll for its completion */
2674 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2675 schedule_timeout(msecs_to_jiffies(100));
2676 goto retry_fw_reset
;
2679 fnic
->remove_wait
= &remove_wait
;
2680 old_state
= fnic
->state
;
2681 fnic
->state
= FNIC_IN_FC_TRANS_ETH_MODE
;
2682 fnic_update_mac_locked(fnic
, fnic
->ctlr
.ctl_src_addr
);
2683 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2685 err
= fnic_fw_reset_handler(fnic
);
2687 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2688 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)
2689 fnic
->state
= old_state
;
2690 fnic
->remove_wait
= NULL
;
2691 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2695 /* Wait for firmware reset to complete */
2696 wait_for_completion_timeout(&remove_wait
,
2697 msecs_to_jiffies(FNIC_RMDEVICE_TIMEOUT
));
2699 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2700 fnic
->remove_wait
= NULL
;
2701 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2702 "fnic_scsi_abort_io %s\n",
2703 (fnic
->state
== FNIC_IN_ETH_MODE
) ?
2704 "SUCCESS" : "FAILED");
2705 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2710 * This fxn called from libFC to clean up driver IO state on link down
2712 void fnic_scsi_cleanup(struct fc_lport
*lp
)
2714 unsigned long flags
;
2715 enum fnic_state old_state
;
2716 struct fnic
*fnic
= lport_priv(lp
);
2718 /* issue fw reset */
2720 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2721 if (unlikely(fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)) {
2722 /* fw reset is in progress, poll for its completion */
2723 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2724 schedule_timeout(msecs_to_jiffies(100));
2725 goto retry_fw_reset
;
2727 old_state
= fnic
->state
;
2728 fnic
->state
= FNIC_IN_FC_TRANS_ETH_MODE
;
2729 fnic_update_mac_locked(fnic
, fnic
->ctlr
.ctl_src_addr
);
2730 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2732 if (fnic_fw_reset_handler(fnic
)) {
2733 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2734 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)
2735 fnic
->state
= old_state
;
2736 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2741 void fnic_empty_scsi_cleanup(struct fc_lport
*lp
)
2745 void fnic_exch_mgr_reset(struct fc_lport
*lp
, u32 sid
, u32 did
)
2747 struct fnic
*fnic
= lport_priv(lp
);
2749 /* Non-zero sid, nothing to do */
2751 goto call_fc_exch_mgr_reset
;
2754 fnic_rport_exch_reset(fnic
, did
);
2755 goto call_fc_exch_mgr_reset
;
2760 * link down or device being removed
2762 if (!fnic
->in_remove
)
2763 fnic_scsi_cleanup(lp
);
2765 fnic_scsi_abort_io(lp
);
2767 /* call libFC exch mgr reset to reset its exchanges */
2768 call_fc_exch_mgr_reset
:
2769 fc_exch_mgr_reset(lp
, sid
, did
);
2774 * fnic_is_abts_pending() is a helper function that
2775 * walks through tag map to check if there is any IOs pending,if there is one,
2776 * then it returns 1 (true), otherwise 0 (false)
2777 * if @lr_sc is non NULL, then it checks IOs specific to particular LUN,
2778 * otherwise, it checks for all IOs.
2780 int fnic_is_abts_pending(struct fnic
*fnic
, struct scsi_cmnd
*lr_sc
)
2783 struct fnic_io_req
*io_req
;
2784 spinlock_t
*io_lock
;
2785 unsigned long flags
;
2787 struct scsi_cmnd
*sc
;
2788 struct scsi_device
*lun_dev
= NULL
;
2791 lun_dev
= lr_sc
->device
;
2793 /* walk again to check, if IOs are still pending in fw */
2794 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
2795 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
2797 * ignore this lun reset cmd or cmds that do not belong to
2800 if (!sc
|| (lr_sc
&& (sc
->device
!= lun_dev
|| sc
== lr_sc
)))
2803 io_lock
= fnic_io_lock_hash(fnic
, sc
);
2804 spin_lock_irqsave(io_lock
, flags
);
2806 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2808 if (!io_req
|| sc
->device
!= lun_dev
) {
2809 spin_unlock_irqrestore(io_lock
, flags
);
2814 * Found IO that is still pending with firmware and
2815 * belongs to the LUN that we are resetting
2817 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2818 "Found IO in %s on lun\n",
2819 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2821 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
2823 spin_unlock_irqrestore(io_lock
, flags
);