1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
39#include "fnic_io.h"
40#include "fnic.h"
41
42const 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",
47};
48
49static 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",
55};
56
57static const char *fcpio_status_str[] = {
58 [FCPIO_SUCCESS] = "FCPIO_SUCCESS",
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",
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",
77};
78
79const char *fnic_state_to_str(unsigned int state)
80{
81 if (state >= ARRAY_SIZE(fnic_state_str) || !fnic_state_str[state])
82 return "unknown";
83
84 return fnic_state_str[state];
85}
86
87static const char *fnic_ioreq_state_to_str(unsigned int state)
88{
89 if (state >= ARRAY_SIZE(fnic_ioreq_state_str) ||
90 !fnic_ioreq_state_str[state])
91 return "unknown";
92
93 return fnic_ioreq_state_str[state];
94}
95
96static const char *fnic_fcpio_status_to_str(unsigned int status)
97{
98 if (status >= ARRAY_SIZE(fcpio_status_str) || !fcpio_status_str[status])
99 return "unknown";
100
101 return fcpio_status_str[status];
102}
103
104static void fnic_cleanup_io(struct fnic *fnic, int exclude_id);
105
106static inline spinlock_t *fnic_io_lock_hash(struct fnic *fnic,
107 struct scsi_cmnd *sc)
108{
109 u32 hash = sc->request->tag & (FNIC_IO_LOCKS - 1);
110
111 return &fnic->io_req_lock[hash];
112}
113
114static inline spinlock_t *fnic_io_lock_tag(struct fnic *fnic,
115 int tag)
116{
117 return &fnic->io_req_lock[tag & (FNIC_IO_LOCKS - 1)];
118}
119
120
121
122
123
124static void fnic_release_ioreq_buf(struct fnic *fnic,
125 struct fnic_io_req *io_req,
126 struct scsi_cmnd *sc)
127{
128 if (io_req->sgl_list_pa)
129 pci_unmap_single(fnic->pdev, io_req->sgl_list_pa,
130 sizeof(io_req->sgl_list[0]) * io_req->sgl_cnt,
131 PCI_DMA_TODEVICE);
132 scsi_dma_unmap(sc);
133
134 if (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 pci_unmap_single(fnic->pdev, io_req->sense_buf_pa,
139 SCSI_SENSE_BUFFERSIZE, PCI_DMA_FROMDEVICE);
140}
141
142
143static int free_wq_copy_descs(struct fnic *fnic, struct vnic_wq_copy *wq)
144{
145
146 if (!fnic->fw_ack_recd[0])
147 return 1;
148
149
150
151
152
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);
156 else
157 wq->ring.desc_avail += (wq->ring.desc_count
158 - wq->to_clean_index
159 + fnic->fw_ack_index[0] + 1);
160
161
162
163
164
165
166 wq->to_clean_index =
167 (fnic->fw_ack_index[0] + 1) % wq->ring.desc_count;
168
169
170 fnic->fw_ack_recd[0] = 0;
171 return 0;
172}
173
174
175
176
177
178
179void
180__fnic_set_state_flags(struct fnic *fnic, unsigned long st_flags,
181 unsigned long clearbits)
182{
183 struct Scsi_Host *host = fnic->lport->host;
184 int sh_locked = spin_is_locked(host->host_lock);
185 unsigned long flags = 0;
186
187 if (!sh_locked)
188 spin_lock_irqsave(host->host_lock, flags);
189
190 if (clearbits)
191 fnic->state_flags &= ~st_flags;
192 else
193 fnic->state_flags |= st_flags;
194
195 if (!sh_locked)
196 spin_unlock_irqrestore(host->host_lock, flags);
197
198 return;
199}
200
201
202
203
204
205
206int fnic_fw_reset_handler(struct fnic *fnic)
207{
208 struct vnic_wq_copy *wq = &fnic->wq_copy[0];
209 int ret = 0;
210 unsigned long flags;
211
212
213 fnic_set_state_flags(fnic, FNIC_FLAGS_FWRESET);
214
215 skb_queue_purge(&fnic->frame_queue);
216 skb_queue_purge(&fnic->tx_queue);
217
218
219 while (atomic_read(&fnic->in_flight))
220 schedule_timeout(msecs_to_jiffies(1));
221
222 spin_lock_irqsave(&fnic->wq_copy_lock[0], flags);
223
224 if (vnic_wq_copy_desc_avail(wq) <= fnic->wq_copy_desc_low[0])
225 free_wq_copy_descs(fnic, wq);
226
227 if (!vnic_wq_copy_desc_avail(wq))
228 ret = -EAGAIN;
229 else {
230 fnic_queue_wq_copy_desc_fw_reset(wq, SCSI_NO_TAG);
231 atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
232 if (atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs) >
233 atomic64_read(&fnic->fnic_stats.fw_stats.max_fw_reqs))
234 atomic64_set(&fnic->fnic_stats.fw_stats.max_fw_reqs,
235 atomic64_read(
236 &fnic->fnic_stats.fw_stats.active_fw_reqs));
237 }
238
239 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], flags);
240
241 if (!ret) {
242 atomic64_inc(&fnic->fnic_stats.reset_stats.fw_resets);
243 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
244 "Issued fw reset\n");
245 } else {
246 fnic_clear_state_flags(fnic, FNIC_FLAGS_FWRESET);
247 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
248 "Failed to issue fw reset\n");
249 }
250
251 return ret;
252}
253
254
255
256
257
258
259int fnic_flogi_reg_handler(struct fnic *fnic, u32 fc_id)
260{
261 struct vnic_wq_copy *wq = &fnic->wq_copy[0];
262 enum fcpio_flogi_reg_format_type format;
263 struct fc_lport *lp = fnic->lport;
264 u8 gw_mac[ETH_ALEN];
265 int ret = 0;
266 unsigned long flags;
267
268 spin_lock_irqsave(&fnic->wq_copy_lock[0], flags);
269
270 if (vnic_wq_copy_desc_avail(wq) <= fnic->wq_copy_desc_low[0])
271 free_wq_copy_descs(fnic, wq);
272
273 if (!vnic_wq_copy_desc_avail(wq)) {
274 ret = -EAGAIN;
275 goto flogi_reg_ioreq_end;
276 }
277
278 if (fnic->ctlr.map_dest) {
279 memset(gw_mac, 0xff, ETH_ALEN);
280 format = FCPIO_FLOGI_REG_DEF_DEST;
281 } else {
282 memcpy(gw_mac, fnic->ctlr.dest_addr, ETH_ALEN);
283 format = FCPIO_FLOGI_REG_GW_DEST;
284 }
285
286 if ((fnic->config.flags & VFCF_FIP_CAPABLE) && !fnic->ctlr.map_dest) {
287 fnic_queue_wq_copy_desc_fip_reg(wq, SCSI_NO_TAG,
288 fc_id, gw_mac,
289 fnic->data_src_addr,
290 lp->r_a_tov, lp->e_d_tov);
291 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
292 "FLOGI FIP reg issued fcid %x src %pM dest %pM\n",
293 fc_id, fnic->data_src_addr, gw_mac);
294 } else {
295 fnic_queue_wq_copy_desc_flogi_reg(wq, SCSI_NO_TAG,
296 format, fc_id, gw_mac);
297 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
298 "FLOGI reg issued fcid %x map %d dest %pM\n",
299 fc_id, fnic->ctlr.map_dest, gw_mac);
300 }
301
302 atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
303 if (atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs) >
304 atomic64_read(&fnic->fnic_stats.fw_stats.max_fw_reqs))
305 atomic64_set(&fnic->fnic_stats.fw_stats.max_fw_reqs,
306 atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs));
307
308flogi_reg_ioreq_end:
309 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], flags);
310 return ret;
311}
312
313
314
315
316
317static inline int fnic_queue_wq_copy_desc(struct fnic *fnic,
318 struct vnic_wq_copy *wq,
319 struct fnic_io_req *io_req,
320 struct scsi_cmnd *sc,
321 int sg_count)
322{
323 struct scatterlist *sg;
324 struct fc_rport *rport = starget_to_rport(scsi_target(sc->device));
325 struct fc_rport_libfc_priv *rp = rport->dd_data;
326 struct host_sg_desc *desc;
327 struct misc_stats *misc_stats = &fnic->fnic_stats.misc_stats;
328 unsigned int i;
329 unsigned long intr_flags;
330 int flags;
331 u8 exch_flags;
332 struct scsi_lun fc_lun;
333 int r;
334
335 if (sg_count) {
336
337 desc = io_req->sgl_list;
338 for_each_sg(scsi_sglist(sc), sg, sg_count, i) {
339 desc->addr = cpu_to_le64(sg_dma_address(sg));
340 desc->len = cpu_to_le32(sg_dma_len(sg));
341 desc->_resvd = 0;
342 desc++;
343 }
344
345 io_req->sgl_list_pa = pci_map_single
346 (fnic->pdev,
347 io_req->sgl_list,
348 sizeof(io_req->sgl_list[0]) * sg_count,
349 PCI_DMA_TODEVICE);
350
351 r = pci_dma_mapping_error(fnic->pdev, io_req->sgl_list_pa);
352 if (r) {
353 printk(KERN_ERR "PCI mapping failed with error %d\n", r);
354 return SCSI_MLQUEUE_HOST_BUSY;
355 }
356 }
357
358 io_req->sense_buf_pa = pci_map_single(fnic->pdev,
359 sc->sense_buffer,
360 SCSI_SENSE_BUFFERSIZE,
361 PCI_DMA_FROMDEVICE);
362
363 r = pci_dma_mapping_error(fnic->pdev, io_req->sense_buf_pa);
364 if (r) {
365 pci_unmap_single(fnic->pdev, io_req->sgl_list_pa,
366 sizeof(io_req->sgl_list[0]) * sg_count,
367 PCI_DMA_TODEVICE);
368 printk(KERN_ERR "PCI mapping failed with error %d\n", r);
369 return SCSI_MLQUEUE_HOST_BUSY;
370 }
371
372 int_to_scsilun(sc->device->lun, &fc_lun);
373
374
375 spin_lock_irqsave(&fnic->wq_copy_lock[0], intr_flags);
376
377 if (vnic_wq_copy_desc_avail(wq) <= fnic->wq_copy_desc_low[0])
378 free_wq_copy_descs(fnic, wq);
379
380 if (unlikely(!vnic_wq_copy_desc_avail(wq))) {
381 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], intr_flags);
382 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
383 "fnic_queue_wq_copy_desc failure - no descriptors\n");
384 atomic64_inc(&misc_stats->io_cpwq_alloc_failures);
385 return SCSI_MLQUEUE_HOST_BUSY;
386 }
387
388 flags = 0;
389 if (sc->sc_data_direction == DMA_FROM_DEVICE)
390 flags = FCPIO_ICMND_RDDATA;
391 else if (sc->sc_data_direction == DMA_TO_DEVICE)
392 flags = FCPIO_ICMND_WRDATA;
393
394 exch_flags = 0;
395 if ((fnic->config.flags & VFCF_FCP_SEQ_LVL_ERR) &&
396 (rp->flags & FC_RP_FLAGS_RETRY))
397 exch_flags |= FCPIO_ICMND_SRFLAG_RETRY;
398
399 fnic_queue_wq_copy_desc_icmnd_16(wq, sc->request->tag,
400 0, exch_flags, io_req->sgl_cnt,
401 SCSI_SENSE_BUFFERSIZE,
402 io_req->sgl_list_pa,
403 io_req->sense_buf_pa,
404 0,
405 FCPIO_ICMND_PTA_SIMPLE,
406
407 flags,
408 sc->cmnd, sc->cmd_len,
409 scsi_bufflen(sc),
410 fc_lun.scsi_lun, io_req->port_id,
411 rport->maxframe_size, rp->r_a_tov,
412 rp->e_d_tov);
413
414 atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
415 if (atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs) >
416 atomic64_read(&fnic->fnic_stats.fw_stats.max_fw_reqs))
417 atomic64_set(&fnic->fnic_stats.fw_stats.max_fw_reqs,
418 atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs));
419
420 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], intr_flags);
421 return 0;
422}
423
424
425
426
427
428
429static int fnic_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
430{
431 struct fc_lport *lp = shost_priv(sc->device->host);
432 struct fc_rport *rport;
433 struct fnic_io_req *io_req = NULL;
434 struct fnic *fnic = lport_priv(lp);
435 struct fnic_stats *fnic_stats = &fnic->fnic_stats;
436 struct vnic_wq_copy *wq;
437 int ret;
438 u64 cmd_trace;
439 int sg_count = 0;
440 unsigned long flags = 0;
441 unsigned long ptr;
442 spinlock_t *io_lock = NULL;
443 int io_lock_acquired = 0;
444 struct fc_rport_libfc_priv *rp;
445
446 if (unlikely(fnic_chk_state_flags_locked(fnic, FNIC_FLAGS_IO_BLOCKED)))
447 return SCSI_MLQUEUE_HOST_BUSY;
448
449 rport = starget_to_rport(scsi_target(sc->device));
450 if (!rport) {
451 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
452 "returning DID_NO_CONNECT for IO as rport is NULL\n");
453 sc->result = DID_NO_CONNECT << 16;
454 done(sc);
455 return 0;
456 }
457
458 ret = fc_remote_port_chkready(rport);
459 if (ret) {
460 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
461 "rport is not ready\n");
462 atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
463 sc->result = ret;
464 done(sc);
465 return 0;
466 }
467
468 rp = rport->dd_data;
469 if (!rp || rp->rp_state == RPORT_ST_DELETE) {
470 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
471 "rport 0x%x removed, returning DID_NO_CONNECT\n",
472 rport->port_id);
473
474 atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
475 sc->result = DID_NO_CONNECT<<16;
476 done(sc);
477 return 0;
478 }
479
480 if (rp->rp_state != RPORT_ST_READY) {
481 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
482 "rport 0x%x in state 0x%x, returning DID_IMM_RETRY\n",
483 rport->port_id, rp->rp_state);
484
485 sc->result = DID_IMM_RETRY << 16;
486 done(sc);
487 return 0;
488 }
489
490 if (lp->state != LPORT_ST_READY || !(lp->link_up))
491 return SCSI_MLQUEUE_HOST_BUSY;
492
493 atomic_inc(&fnic->in_flight);
494
495
496
497
498
499
500 spin_unlock(lp->host->host_lock);
501 CMD_STATE(sc) = FNIC_IOREQ_NOT_INITED;
502 CMD_FLAGS(sc) = FNIC_NO_FLAGS;
503
504
505 io_req = mempool_alloc(fnic->io_req_pool, GFP_ATOMIC);
506 if (!io_req) {
507 atomic64_inc(&fnic_stats->io_stats.alloc_failures);
508 ret = SCSI_MLQUEUE_HOST_BUSY;
509 goto out;
510 }
511 memset(io_req, 0, sizeof(*io_req));
512
513
514 sg_count = scsi_dma_map(sc);
515 if (sg_count < 0) {
516 FNIC_TRACE(fnic_queuecommand, sc->device->host->host_no,
517 sc->request->tag, sc, 0, sc->cmnd[0],
518 sg_count, CMD_STATE(sc));
519 mempool_free(io_req, fnic->io_req_pool);
520 goto out;
521 }
522
523
524 io_req->sgl_cnt = sg_count;
525 io_req->sgl_type = FNIC_SGL_CACHE_DFLT;
526 if (sg_count > FNIC_DFLT_SG_DESC_CNT)
527 io_req->sgl_type = FNIC_SGL_CACHE_MAX;
528
529 if (sg_count) {
530 io_req->sgl_list =
531 mempool_alloc(fnic->io_sgl_pool[io_req->sgl_type],
532 GFP_ATOMIC);
533 if (!io_req->sgl_list) {
534 atomic64_inc(&fnic_stats->io_stats.alloc_failures);
535 ret = SCSI_MLQUEUE_HOST_BUSY;
536 scsi_dma_unmap(sc);
537 mempool_free(io_req, fnic->io_req_pool);
538 goto out;
539 }
540
541
542 io_req->sgl_list_alloc = io_req->sgl_list;
543 ptr = (unsigned long) io_req->sgl_list;
544 if (ptr % FNIC_SG_DESC_ALIGN) {
545 io_req->sgl_list = (struct host_sg_desc *)
546 (((unsigned long) ptr
547 + FNIC_SG_DESC_ALIGN - 1)
548 & ~(FNIC_SG_DESC_ALIGN - 1));
549 }
550 }
551
552
553
554
555
556 io_lock = fnic_io_lock_hash(fnic, sc);
557 spin_lock_irqsave(io_lock, flags);
558
559
560 io_lock_acquired = 1;
561 io_req->port_id = rport->port_id;
562 io_req->start_time = jiffies;
563 CMD_STATE(sc) = FNIC_IOREQ_CMD_PENDING;
564 CMD_SP(sc) = (char *)io_req;
565 CMD_FLAGS(sc) |= FNIC_IO_INITIALIZED;
566 sc->scsi_done = done;
567
568
569 wq = &fnic->wq_copy[0];
570 ret = fnic_queue_wq_copy_desc(fnic, wq, io_req, sc, sg_count);
571 if (ret) {
572
573
574
575
576 FNIC_TRACE(fnic_queuecommand, sc->device->host->host_no,
577 sc->request->tag, sc, 0, 0, 0,
578 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
579 io_req = (struct fnic_io_req *)CMD_SP(sc);
580 CMD_SP(sc) = NULL;
581 CMD_STATE(sc) = FNIC_IOREQ_CMD_COMPLETE;
582 spin_unlock_irqrestore(io_lock, flags);
583 if (io_req) {
584 fnic_release_ioreq_buf(fnic, io_req, sc);
585 mempool_free(io_req, fnic->io_req_pool);
586 }
587 atomic_dec(&fnic->in_flight);
588
589 spin_lock(lp->host->host_lock);
590 return ret;
591 } else {
592 atomic64_inc(&fnic_stats->io_stats.active_ios);
593 atomic64_inc(&fnic_stats->io_stats.num_ios);
594 if (atomic64_read(&fnic_stats->io_stats.active_ios) >
595 atomic64_read(&fnic_stats->io_stats.max_active_ios))
596 atomic64_set(&fnic_stats->io_stats.max_active_ios,
597 atomic64_read(&fnic_stats->io_stats.active_ios));
598
599
600 CMD_FLAGS(sc) |= FNIC_IO_ISSUED;
601 }
602out:
603 cmd_trace = ((u64)sc->cmnd[0] << 56 | (u64)sc->cmnd[7] << 40 |
604 (u64)sc->cmnd[8] << 32 | (u64)sc->cmnd[2] << 24 |
605 (u64)sc->cmnd[3] << 16 | (u64)sc->cmnd[4] << 8 |
606 sc->cmnd[5]);
607
608 FNIC_TRACE(fnic_queuecommand, sc->device->host->host_no,
609 sc->request->tag, sc, io_req,
610 sg_count, cmd_trace,
611 (((u64)CMD_FLAGS(sc) >> 32) | CMD_STATE(sc)));
612
613
614 if (io_lock_acquired)
615 spin_unlock_irqrestore(io_lock, flags);
616
617 atomic_dec(&fnic->in_flight);
618
619 spin_lock(lp->host->host_lock);
620 return ret;
621}
622
623DEF_SCSI_QCMD(fnic_queuecommand)
624
625
626
627
628
629static int fnic_fcpio_fw_reset_cmpl_handler(struct fnic *fnic,
630 struct fcpio_fw_req *desc)
631{
632 u8 type;
633 u8 hdr_status;
634 struct fcpio_tag tag;
635 int ret = 0;
636 unsigned long flags;
637 struct reset_stats *reset_stats = &fnic->fnic_stats.reset_stats;
638
639 fcpio_header_dec(&desc->hdr, &type, &hdr_status, &tag);
640
641 atomic64_inc(&reset_stats->fw_reset_completions);
642
643
644 fnic_cleanup_io(fnic, SCSI_NO_TAG);
645
646 atomic64_set(&fnic->fnic_stats.fw_stats.active_fw_reqs, 0);
647 atomic64_set(&fnic->fnic_stats.io_stats.active_ios, 0);
648 atomic64_set(&fnic->io_cmpl_skip, 0);
649
650 spin_lock_irqsave(&fnic->fnic_lock, flags);
651
652
653 if (fnic->state == FNIC_IN_FC_TRANS_ETH_MODE) {
654
655 if (!hdr_status) {
656 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
657 "reset cmpl success\n");
658
659 fnic->state = FNIC_IN_ETH_MODE;
660 } else {
661 FNIC_SCSI_DBG(KERN_DEBUG,
662 fnic->lport->host,
663 "fnic fw_reset : failed %s\n",
664 fnic_fcpio_status_to_str(hdr_status));
665
666
667
668
669
670
671
672 fnic->state = FNIC_IN_FC_MODE;
673 atomic64_inc(&reset_stats->fw_reset_failures);
674 ret = -1;
675 }
676 } else {
677 FNIC_SCSI_DBG(KERN_DEBUG,
678 fnic->lport->host,
679 "Unexpected state %s while processing"
680 " reset cmpl\n", fnic_state_to_str(fnic->state));
681 atomic64_inc(&reset_stats->fw_reset_failures);
682 ret = -1;
683 }
684
685
686 if (fnic->remove_wait)
687 complete(fnic->remove_wait);
688
689
690
691
692
693 if (fnic->remove_wait || ret) {
694 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
695 skb_queue_purge(&fnic->tx_queue);
696 goto reset_cmpl_handler_end;
697 }
698
699 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
700
701 fnic_flush_tx(fnic);
702
703 reset_cmpl_handler_end:
704 fnic_clear_state_flags(fnic, FNIC_FLAGS_FWRESET);
705
706 return ret;
707}
708
709
710
711
712
713static int fnic_fcpio_flogi_reg_cmpl_handler(struct fnic *fnic,
714 struct fcpio_fw_req *desc)
715{
716 u8 type;
717 u8 hdr_status;
718 struct fcpio_tag tag;
719 int ret = 0;
720 unsigned long flags;
721
722 fcpio_header_dec(&desc->hdr, &type, &hdr_status, &tag);
723
724
725 spin_lock_irqsave(&fnic->fnic_lock, flags);
726
727 if (fnic->state == FNIC_IN_ETH_TRANS_FC_MODE) {
728
729
730 if (!hdr_status) {
731 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
732 "flog reg succeeded\n");
733 fnic->state = FNIC_IN_FC_MODE;
734 } else {
735 FNIC_SCSI_DBG(KERN_DEBUG,
736 fnic->lport->host,
737 "fnic flogi reg :failed %s\n",
738 fnic_fcpio_status_to_str(hdr_status));
739 fnic->state = FNIC_IN_ETH_MODE;
740 ret = -1;
741 }
742 } else {
743 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
744 "Unexpected fnic state %s while"
745 " processing flogi reg completion\n",
746 fnic_state_to_str(fnic->state));
747 ret = -1;
748 }
749
750 if (!ret) {
751 if (fnic->stop_rx_link_events) {
752 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
753 goto reg_cmpl_handler_end;
754 }
755 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
756
757 fnic_flush_tx(fnic);
758 queue_work(fnic_event_queue, &fnic->frame_work);
759 } else {
760 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
761 }
762
763reg_cmpl_handler_end:
764 return ret;
765}
766
767static inline int is_ack_index_in_range(struct vnic_wq_copy *wq,
768 u16 request_out)
769{
770 if (wq->to_clean_index <= wq->to_use_index) {
771
772 if (request_out < wq->to_clean_index ||
773 request_out >= wq->to_use_index)
774 return 0;
775 } else {
776
777 if (request_out < wq->to_clean_index &&
778 request_out >= wq->to_use_index)
779 return 0;
780 }
781
782 return 1;
783}
784
785
786
787
788
789
790
791
792static inline void fnic_fcpio_ack_handler(struct fnic *fnic,
793 unsigned int cq_index,
794 struct fcpio_fw_req *desc)
795{
796 struct vnic_wq_copy *wq;
797 u16 request_out = desc->u.ack.request_out;
798 unsigned long flags;
799 u64 *ox_id_tag = (u64 *)(void *)desc;
800
801
802 wq = &fnic->wq_copy[cq_index - fnic->raw_wq_count - fnic->rq_count];
803 spin_lock_irqsave(&fnic->wq_copy_lock[0], flags);
804
805 fnic->fnic_stats.misc_stats.last_ack_time = jiffies;
806 if (is_ack_index_in_range(wq, request_out)) {
807 fnic->fw_ack_index[0] = request_out;
808 fnic->fw_ack_recd[0] = 1;
809 } else
810 atomic64_inc(
811 &fnic->fnic_stats.misc_stats.ack_index_out_of_range);
812
813 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], flags);
814 FNIC_TRACE(fnic_fcpio_ack_handler,
815 fnic->lport->host->host_no, 0, 0, ox_id_tag[2], ox_id_tag[3],
816 ox_id_tag[4], ox_id_tag[5]);
817}
818
819
820
821
822
823static void fnic_fcpio_icmnd_cmpl_handler(struct fnic *fnic,
824 struct fcpio_fw_req *desc)
825{
826 u8 type;
827 u8 hdr_status;
828 struct fcpio_tag tag;
829 u32 id;
830 u64 xfer_len = 0;
831 struct fcpio_icmnd_cmpl *icmnd_cmpl;
832 struct fnic_io_req *io_req;
833 struct scsi_cmnd *sc;
834 struct fnic_stats *fnic_stats = &fnic->fnic_stats;
835 unsigned long flags;
836 spinlock_t *io_lock;
837 u64 cmd_trace;
838 unsigned long start_time;
839 unsigned long io_duration_time;
840
841
842 fcpio_header_dec(&desc->hdr, &type, &hdr_status, &tag);
843 fcpio_tag_id_dec(&tag, &id);
844 icmnd_cmpl = &desc->u.icmnd_cmpl;
845
846 if (id >= fnic->fnic_max_tag_id) {
847 shost_printk(KERN_ERR, fnic->lport->host,
848 "Tag out of range tag %x hdr status = %s\n",
849 id, fnic_fcpio_status_to_str(hdr_status));
850 return;
851 }
852
853 sc = scsi_host_find_tag(fnic->lport->host, id);
854 WARN_ON_ONCE(!sc);
855 if (!sc) {
856 atomic64_inc(&fnic_stats->io_stats.sc_null);
857 shost_printk(KERN_ERR, fnic->lport->host,
858 "icmnd_cmpl sc is null - "
859 "hdr status = %s tag = 0x%x desc = 0x%p\n",
860 fnic_fcpio_status_to_str(hdr_status), id, desc);
861 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler,
862 fnic->lport->host->host_no, id,
863 ((u64)icmnd_cmpl->_resvd0[1] << 16 |
864 (u64)icmnd_cmpl->_resvd0[0]),
865 ((u64)hdr_status << 16 |
866 (u64)icmnd_cmpl->scsi_status << 8 |
867 (u64)icmnd_cmpl->flags), desc,
868 (u64)icmnd_cmpl->residual, 0);
869 return;
870 }
871
872 io_lock = fnic_io_lock_hash(fnic, sc);
873 spin_lock_irqsave(io_lock, flags);
874 io_req = (struct fnic_io_req *)CMD_SP(sc);
875 WARN_ON_ONCE(!io_req);
876 if (!io_req) {
877 atomic64_inc(&fnic_stats->io_stats.ioreq_null);
878 CMD_FLAGS(sc) |= FNIC_IO_REQ_NULL;
879 spin_unlock_irqrestore(io_lock, flags);
880 shost_printk(KERN_ERR, fnic->lport->host,
881 "icmnd_cmpl io_req is null - "
882 "hdr status = %s tag = 0x%x sc 0x%p\n",
883 fnic_fcpio_status_to_str(hdr_status), id, sc);
884 return;
885 }
886 start_time = io_req->start_time;
887
888
889 io_req->io_completed = 1;
890
891
892
893
894
895 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
896
897
898
899
900
901 CMD_FLAGS(sc) |= FNIC_IO_DONE;
902 CMD_FLAGS(sc) |= FNIC_IO_ABTS_PENDING;
903 spin_unlock_irqrestore(io_lock, flags);
904 if(FCPIO_ABORTED == hdr_status)
905 CMD_FLAGS(sc) |= FNIC_IO_ABORTED;
906
907 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
908 "icmnd_cmpl abts pending "
909 "hdr status = %s tag = 0x%x sc = 0x%p"
910 "scsi_status = %x residual = %d\n",
911 fnic_fcpio_status_to_str(hdr_status),
912 id, sc,
913 icmnd_cmpl->scsi_status,
914 icmnd_cmpl->residual);
915 return;
916 }
917
918
919 CMD_STATE(sc) = FNIC_IOREQ_CMD_COMPLETE;
920
921 icmnd_cmpl = &desc->u.icmnd_cmpl;
922
923 switch (hdr_status) {
924 case FCPIO_SUCCESS:
925 sc->result = (DID_OK << 16) | icmnd_cmpl->scsi_status;
926 xfer_len = scsi_bufflen(sc);
927 scsi_set_resid(sc, icmnd_cmpl->residual);
928
929 if (icmnd_cmpl->flags & FCPIO_ICMND_CMPL_RESID_UNDER)
930 xfer_len -= icmnd_cmpl->residual;
931
932 if (icmnd_cmpl->scsi_status == SAM_STAT_CHECK_CONDITION)
933 atomic64_inc(&fnic_stats->misc_stats.check_condition);
934
935 if (icmnd_cmpl->scsi_status == SAM_STAT_TASK_SET_FULL)
936 atomic64_inc(&fnic_stats->misc_stats.queue_fulls);
937 break;
938
939 case FCPIO_TIMEOUT:
940 atomic64_inc(&fnic_stats->misc_stats.fcpio_timeout);
941 sc->result = (DID_TIME_OUT << 16) | icmnd_cmpl->scsi_status;
942 break;
943
944 case FCPIO_ABORTED:
945 atomic64_inc(&fnic_stats->misc_stats.fcpio_aborted);
946 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
947 break;
948
949 case FCPIO_DATA_CNT_MISMATCH:
950 atomic64_inc(&fnic_stats->misc_stats.data_count_mismatch);
951 scsi_set_resid(sc, icmnd_cmpl->residual);
952 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
953 break;
954
955 case FCPIO_OUT_OF_RESOURCE:
956 atomic64_inc(&fnic_stats->fw_stats.fw_out_of_resources);
957 sc->result = (DID_REQUEUE << 16) | icmnd_cmpl->scsi_status;
958 break;
959
960 case FCPIO_IO_NOT_FOUND:
961 atomic64_inc(&fnic_stats->io_stats.io_not_found);
962 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
963 break;
964
965 case FCPIO_SGL_INVALID:
966 atomic64_inc(&fnic_stats->misc_stats.sgl_invalid);
967 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
968 break;
969
970 case FCPIO_FW_ERR:
971 atomic64_inc(&fnic_stats->fw_stats.io_fw_errs);
972 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
973 break;
974
975 case FCPIO_MSS_INVALID:
976 atomic64_inc(&fnic_stats->misc_stats.mss_invalid);
977 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
978 break;
979
980 case FCPIO_INVALID_HEADER:
981 case FCPIO_INVALID_PARAM:
982 case FCPIO_REQ_NOT_SUPPORTED:
983 default:
984 sc->result = (DID_ERROR << 16) | icmnd_cmpl->scsi_status;
985 break;
986 }
987
988
989 CMD_SP(sc) = NULL;
990 CMD_FLAGS(sc) |= FNIC_IO_DONE;
991
992 spin_unlock_irqrestore(io_lock, flags);
993
994 if (hdr_status != FCPIO_SUCCESS) {
995 atomic64_inc(&fnic_stats->io_stats.io_failures);
996 shost_printk(KERN_ERR, fnic->lport->host, "hdr status = %s\n",
997 fnic_fcpio_status_to_str(hdr_status));
998 }
999
1000 fnic_release_ioreq_buf(fnic, io_req, sc);
1001
1002 mempool_free(io_req, fnic->io_req_pool);
1003
1004 cmd_trace = ((u64)hdr_status << 56) |
1005 (u64)icmnd_cmpl->scsi_status << 48 |
1006 (u64)icmnd_cmpl->flags << 40 | (u64)sc->cmnd[0] << 32 |
1007 (u64)sc->cmnd[2] << 24 | (u64)sc->cmnd[3] << 16 |
1008 (u64)sc->cmnd[4] << 8 | sc->cmnd[5];
1009
1010 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler,
1011 sc->device->host->host_no, id, sc,
1012 ((u64)icmnd_cmpl->_resvd0[1] << 56 |
1013 (u64)icmnd_cmpl->_resvd0[0] << 48 |
1014 jiffies_to_msecs(jiffies - start_time)),
1015 desc, cmd_trace,
1016 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
1017
1018 if (sc->sc_data_direction == DMA_FROM_DEVICE) {
1019 fnic->lport->host_stats.fcp_input_requests++;
1020 fnic->fcp_input_bytes += xfer_len;
1021 } else if (sc->sc_data_direction == DMA_TO_DEVICE) {
1022 fnic->lport->host_stats.fcp_output_requests++;
1023 fnic->fcp_output_bytes += xfer_len;
1024 } else
1025 fnic->lport->host_stats.fcp_control_requests++;
1026
1027 atomic64_dec(&fnic_stats->io_stats.active_ios);
1028 if (atomic64_read(&fnic->io_cmpl_skip))
1029 atomic64_dec(&fnic->io_cmpl_skip);
1030 else
1031 atomic64_inc(&fnic_stats->io_stats.io_completions);
1032
1033
1034 io_duration_time = jiffies_to_msecs(jiffies) - jiffies_to_msecs(io_req->start_time);
1035
1036 if(io_duration_time <= 10)
1037 atomic64_inc(&fnic_stats->io_stats.io_btw_0_to_10_msec);
1038 else if(io_duration_time <= 100)
1039 atomic64_inc(&fnic_stats->io_stats.io_btw_10_to_100_msec);
1040 else if(io_duration_time <= 500)
1041 atomic64_inc(&fnic_stats->io_stats.io_btw_100_to_500_msec);
1042 else if(io_duration_time <= 5000)
1043 atomic64_inc(&fnic_stats->io_stats.io_btw_500_to_5000_msec);
1044 else if(io_duration_time <= 10000)
1045 atomic64_inc(&fnic_stats->io_stats.io_btw_5000_to_10000_msec);
1046 else if(io_duration_time <= 30000)
1047 atomic64_inc(&fnic_stats->io_stats.io_btw_10000_to_30000_msec);
1048 else {
1049 atomic64_inc(&fnic_stats->io_stats.io_greater_than_30000_msec);
1050
1051 if(io_duration_time > atomic64_read(&fnic_stats->io_stats.current_max_io_time))
1052 atomic64_set(&fnic_stats->io_stats.current_max_io_time, io_duration_time);
1053 }
1054
1055
1056 if (sc->scsi_done)
1057 sc->scsi_done(sc);
1058}
1059
1060
1061
1062
1063static void fnic_fcpio_itmf_cmpl_handler(struct fnic *fnic,
1064 struct fcpio_fw_req *desc)
1065{
1066 u8 type;
1067 u8 hdr_status;
1068 struct fcpio_tag tag;
1069 u32 id;
1070 struct scsi_cmnd *sc;
1071 struct fnic_io_req *io_req;
1072 struct fnic_stats *fnic_stats = &fnic->fnic_stats;
1073 struct abort_stats *abts_stats = &fnic->fnic_stats.abts_stats;
1074 struct terminate_stats *term_stats = &fnic->fnic_stats.term_stats;
1075 struct misc_stats *misc_stats = &fnic->fnic_stats.misc_stats;
1076 unsigned long flags;
1077 spinlock_t *io_lock;
1078 unsigned long start_time;
1079
1080 fcpio_header_dec(&desc->hdr, &type, &hdr_status, &tag);
1081 fcpio_tag_id_dec(&tag, &id);
1082
1083 if ((id & FNIC_TAG_MASK) >= fnic->fnic_max_tag_id) {
1084 shost_printk(KERN_ERR, fnic->lport->host,
1085 "Tag out of range tag %x hdr status = %s\n",
1086 id, fnic_fcpio_status_to_str(hdr_status));
1087 return;
1088 }
1089
1090 sc = scsi_host_find_tag(fnic->lport->host, id & FNIC_TAG_MASK);
1091 WARN_ON_ONCE(!sc);
1092 if (!sc) {
1093 atomic64_inc(&fnic_stats->io_stats.sc_null);
1094 shost_printk(KERN_ERR, fnic->lport->host,
1095 "itmf_cmpl sc is null - hdr status = %s tag = 0x%x\n",
1096 fnic_fcpio_status_to_str(hdr_status), id);
1097 return;
1098 }
1099 io_lock = fnic_io_lock_hash(fnic, sc);
1100 spin_lock_irqsave(io_lock, flags);
1101 io_req = (struct fnic_io_req *)CMD_SP(sc);
1102 WARN_ON_ONCE(!io_req);
1103 if (!io_req) {
1104 atomic64_inc(&fnic_stats->io_stats.ioreq_null);
1105 spin_unlock_irqrestore(io_lock, flags);
1106 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_REQ_NULL;
1107 shost_printk(KERN_ERR, fnic->lport->host,
1108 "itmf_cmpl io_req is null - "
1109 "hdr status = %s tag = 0x%x sc 0x%p\n",
1110 fnic_fcpio_status_to_str(hdr_status), id, sc);
1111 return;
1112 }
1113 start_time = io_req->start_time;
1114
1115 if ((id & FNIC_TAG_ABORT) && (id & FNIC_TAG_DEV_RST)) {
1116
1117
1118 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1119 "dev reset abts cmpl recd. id %x status %s\n",
1120 id, fnic_fcpio_status_to_str(hdr_status));
1121 CMD_STATE(sc) = FNIC_IOREQ_ABTS_COMPLETE;
1122 CMD_ABTS_STATUS(sc) = hdr_status;
1123 CMD_FLAGS(sc) |= FNIC_DEV_RST_DONE;
1124 if (io_req->abts_done)
1125 complete(io_req->abts_done);
1126 spin_unlock_irqrestore(io_lock, flags);
1127 } else if (id & FNIC_TAG_ABORT) {
1128
1129 switch (hdr_status) {
1130 case FCPIO_SUCCESS:
1131 break;
1132 case FCPIO_TIMEOUT:
1133 if (CMD_FLAGS(sc) & FNIC_IO_ABTS_ISSUED)
1134 atomic64_inc(&abts_stats->abort_fw_timeouts);
1135 else
1136 atomic64_inc(
1137 &term_stats->terminate_fw_timeouts);
1138 break;
1139 case FCPIO_ITMF_REJECTED:
1140 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
1141 "abort reject recd. id %d\n",
1142 (int)(id & FNIC_TAG_MASK));
1143 break;
1144 case FCPIO_IO_NOT_FOUND:
1145 if (CMD_FLAGS(sc) & FNIC_IO_ABTS_ISSUED)
1146 atomic64_inc(&abts_stats->abort_io_not_found);
1147 else
1148 atomic64_inc(
1149 &term_stats->terminate_io_not_found);
1150 break;
1151 default:
1152 if (CMD_FLAGS(sc) & FNIC_IO_ABTS_ISSUED)
1153 atomic64_inc(&abts_stats->abort_failures);
1154 else
1155 atomic64_inc(
1156 &term_stats->terminate_failures);
1157 break;
1158 }
1159 if (CMD_STATE(sc) != FNIC_IOREQ_ABTS_PENDING) {
1160
1161 spin_unlock_irqrestore(io_lock, flags);
1162 return;
1163 }
1164
1165 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_DONE;
1166 CMD_ABTS_STATUS(sc) = hdr_status;
1167
1168
1169 if (hdr_status == FCPIO_IO_NOT_FOUND)
1170 CMD_ABTS_STATUS(sc) = FCPIO_SUCCESS;
1171
1172 if (!(CMD_FLAGS(sc) & (FNIC_IO_ABORTED | FNIC_IO_DONE)))
1173 atomic64_inc(&misc_stats->no_icmnd_itmf_cmpls);
1174
1175 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1176 "abts cmpl recd. id %d status %s\n",
1177 (int)(id & FNIC_TAG_MASK),
1178 fnic_fcpio_status_to_str(hdr_status));
1179
1180
1181
1182
1183
1184
1185 if (io_req->abts_done) {
1186 complete(io_req->abts_done);
1187 spin_unlock_irqrestore(io_lock, flags);
1188 } else {
1189 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1190 "abts cmpl, completing IO\n");
1191 CMD_SP(sc) = NULL;
1192 sc->result = (DID_ERROR << 16);
1193
1194 spin_unlock_irqrestore(io_lock, flags);
1195
1196 fnic_release_ioreq_buf(fnic, io_req, sc);
1197 mempool_free(io_req, fnic->io_req_pool);
1198 if (sc->scsi_done) {
1199 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler,
1200 sc->device->host->host_no, id,
1201 sc,
1202 jiffies_to_msecs(jiffies - start_time),
1203 desc,
1204 (((u64)hdr_status << 40) |
1205 (u64)sc->cmnd[0] << 32 |
1206 (u64)sc->cmnd[2] << 24 |
1207 (u64)sc->cmnd[3] << 16 |
1208 (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
1209 (((u64)CMD_FLAGS(sc) << 32) |
1210 CMD_STATE(sc)));
1211 sc->scsi_done(sc);
1212 atomic64_dec(&fnic_stats->io_stats.active_ios);
1213 if (atomic64_read(&fnic->io_cmpl_skip))
1214 atomic64_dec(&fnic->io_cmpl_skip);
1215 else
1216 atomic64_inc(&fnic_stats->io_stats.io_completions);
1217 }
1218 }
1219
1220 } else if (id & FNIC_TAG_DEV_RST) {
1221
1222 CMD_LR_STATUS(sc) = hdr_status;
1223 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
1224 spin_unlock_irqrestore(io_lock, flags);
1225 CMD_FLAGS(sc) |= FNIC_DEV_RST_ABTS_PENDING;
1226 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler,
1227 sc->device->host->host_no, id, sc,
1228 jiffies_to_msecs(jiffies - start_time),
1229 desc, 0,
1230 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
1231 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1232 "Terminate pending "
1233 "dev reset cmpl recd. id %d status %s\n",
1234 (int)(id & FNIC_TAG_MASK),
1235 fnic_fcpio_status_to_str(hdr_status));
1236 return;
1237 }
1238 if (CMD_FLAGS(sc) & FNIC_DEV_RST_TIMED_OUT) {
1239
1240 spin_unlock_irqrestore(io_lock, flags);
1241 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler,
1242 sc->device->host->host_no, id, sc,
1243 jiffies_to_msecs(jiffies - start_time),
1244 desc, 0,
1245 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
1246 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1247 "dev reset cmpl recd after time out. "
1248 "id %d status %s\n",
1249 (int)(id & FNIC_TAG_MASK),
1250 fnic_fcpio_status_to_str(hdr_status));
1251 return;
1252 }
1253 CMD_STATE(sc) = FNIC_IOREQ_CMD_COMPLETE;
1254 CMD_FLAGS(sc) |= FNIC_DEV_RST_DONE;
1255 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1256 "dev reset cmpl recd. id %d status %s\n",
1257 (int)(id & FNIC_TAG_MASK),
1258 fnic_fcpio_status_to_str(hdr_status));
1259 if (io_req->dr_done)
1260 complete(io_req->dr_done);
1261 spin_unlock_irqrestore(io_lock, flags);
1262
1263 } else {
1264 shost_printk(KERN_ERR, fnic->lport->host,
1265 "Unexpected itmf io state %s tag %x\n",
1266 fnic_ioreq_state_to_str(CMD_STATE(sc)), id);
1267 spin_unlock_irqrestore(io_lock, flags);
1268 }
1269
1270}
1271
1272
1273
1274
1275
1276static int fnic_fcpio_cmpl_handler(struct vnic_dev *vdev,
1277 unsigned int cq_index,
1278 struct fcpio_fw_req *desc)
1279{
1280 struct fnic *fnic = vnic_dev_priv(vdev);
1281
1282 switch (desc->hdr.type) {
1283 case FCPIO_ICMND_CMPL:
1284 case FCPIO_ITMF_CMPL:
1285 case FCPIO_FLOGI_REG_CMPL:
1286 case FCPIO_FLOGI_FIP_REG_CMPL:
1287 case FCPIO_RESET_CMPL:
1288 atomic64_dec(&fnic->fnic_stats.fw_stats.active_fw_reqs);
1289 break;
1290 default:
1291 break;
1292 }
1293
1294 switch (desc->hdr.type) {
1295 case FCPIO_ACK:
1296 fnic_fcpio_ack_handler(fnic, cq_index, desc);
1297 break;
1298
1299 case FCPIO_ICMND_CMPL:
1300 fnic_fcpio_icmnd_cmpl_handler(fnic, desc);
1301 break;
1302
1303 case FCPIO_ITMF_CMPL:
1304 fnic_fcpio_itmf_cmpl_handler(fnic, desc);
1305 break;
1306
1307 case FCPIO_FLOGI_REG_CMPL:
1308 case FCPIO_FLOGI_FIP_REG_CMPL:
1309 fnic_fcpio_flogi_reg_cmpl_handler(fnic, desc);
1310 break;
1311
1312 case FCPIO_RESET_CMPL:
1313 fnic_fcpio_fw_reset_cmpl_handler(fnic, desc);
1314 break;
1315
1316 default:
1317 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1318 "firmware completion type %d\n",
1319 desc->hdr.type);
1320 break;
1321 }
1322
1323 return 0;
1324}
1325
1326
1327
1328
1329
1330int fnic_wq_copy_cmpl_handler(struct fnic *fnic, int copy_work_to_do)
1331{
1332 unsigned int wq_work_done = 0;
1333 unsigned int i, cq_index;
1334 unsigned int cur_work_done;
1335
1336 for (i = 0; i < fnic->wq_copy_count; i++) {
1337 cq_index = i + fnic->raw_wq_count + fnic->rq_count;
1338 cur_work_done = vnic_cq_copy_service(&fnic->cq[cq_index],
1339 fnic_fcpio_cmpl_handler,
1340 copy_work_to_do);
1341 wq_work_done += cur_work_done;
1342 }
1343 return wq_work_done;
1344}
1345
1346static void fnic_cleanup_io(struct fnic *fnic, int exclude_id)
1347{
1348 int i;
1349 struct fnic_io_req *io_req;
1350 unsigned long flags = 0;
1351 struct scsi_cmnd *sc;
1352 spinlock_t *io_lock;
1353 unsigned long start_time = 0;
1354 struct fnic_stats *fnic_stats = &fnic->fnic_stats;
1355
1356 for (i = 0; i < fnic->fnic_max_tag_id; i++) {
1357 if (i == exclude_id)
1358 continue;
1359
1360 io_lock = fnic_io_lock_tag(fnic, i);
1361 spin_lock_irqsave(io_lock, flags);
1362 sc = scsi_host_find_tag(fnic->lport->host, i);
1363 if (!sc) {
1364 spin_unlock_irqrestore(io_lock, flags);
1365 continue;
1366 }
1367
1368 io_req = (struct fnic_io_req *)CMD_SP(sc);
1369 if ((CMD_FLAGS(sc) & FNIC_DEVICE_RESET) &&
1370 !(CMD_FLAGS(sc) & FNIC_DEV_RST_DONE)) {
1371
1372
1373
1374
1375 CMD_FLAGS(sc) |= FNIC_DEV_RST_DONE;
1376 if (io_req && io_req->dr_done)
1377 complete(io_req->dr_done);
1378 else if (io_req && io_req->abts_done)
1379 complete(io_req->abts_done);
1380 spin_unlock_irqrestore(io_lock, flags);
1381 continue;
1382 } else if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET) {
1383 spin_unlock_irqrestore(io_lock, flags);
1384 continue;
1385 }
1386 if (!io_req) {
1387 spin_unlock_irqrestore(io_lock, flags);
1388 goto cleanup_scsi_cmd;
1389 }
1390
1391 CMD_SP(sc) = NULL;
1392
1393 spin_unlock_irqrestore(io_lock, flags);
1394
1395
1396
1397
1398
1399 start_time = io_req->start_time;
1400 fnic_release_ioreq_buf(fnic, io_req, sc);
1401 mempool_free(io_req, fnic->io_req_pool);
1402
1403cleanup_scsi_cmd:
1404 sc->result = DID_TRANSPORT_DISRUPTED << 16;
1405 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1406 "%s: sc duration = %lu DID_TRANSPORT_DISRUPTED\n",
1407 __func__, (jiffies - start_time));
1408
1409 if (atomic64_read(&fnic->io_cmpl_skip))
1410 atomic64_dec(&fnic->io_cmpl_skip);
1411 else
1412 atomic64_inc(&fnic_stats->io_stats.io_completions);
1413
1414
1415 if (sc->scsi_done) {
1416 FNIC_TRACE(fnic_cleanup_io,
1417 sc->device->host->host_no, i, sc,
1418 jiffies_to_msecs(jiffies - start_time),
1419 0, ((u64)sc->cmnd[0] << 32 |
1420 (u64)sc->cmnd[2] << 24 |
1421 (u64)sc->cmnd[3] << 16 |
1422 (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
1423 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
1424
1425 sc->scsi_done(sc);
1426 }
1427 }
1428}
1429
1430void fnic_wq_copy_cleanup_handler(struct vnic_wq_copy *wq,
1431 struct fcpio_host_req *desc)
1432{
1433 u32 id;
1434 struct fnic *fnic = vnic_dev_priv(wq->vdev);
1435 struct fnic_io_req *io_req;
1436 struct scsi_cmnd *sc;
1437 unsigned long flags;
1438 spinlock_t *io_lock;
1439 unsigned long start_time = 0;
1440
1441
1442 fcpio_tag_id_dec(&desc->hdr.tag, &id);
1443 id &= FNIC_TAG_MASK;
1444
1445 if (id >= fnic->fnic_max_tag_id)
1446 return;
1447
1448 sc = scsi_host_find_tag(fnic->lport->host, id);
1449 if (!sc)
1450 return;
1451
1452 io_lock = fnic_io_lock_hash(fnic, sc);
1453 spin_lock_irqsave(io_lock, flags);
1454
1455
1456 io_req = (struct fnic_io_req *)CMD_SP(sc);
1457
1458
1459
1460 if (!io_req) {
1461 spin_unlock_irqrestore(io_lock, flags);
1462 goto wq_copy_cleanup_scsi_cmd;
1463 }
1464
1465 CMD_SP(sc) = NULL;
1466
1467 spin_unlock_irqrestore(io_lock, flags);
1468
1469 start_time = io_req->start_time;
1470 fnic_release_ioreq_buf(fnic, io_req, sc);
1471 mempool_free(io_req, fnic->io_req_pool);
1472
1473wq_copy_cleanup_scsi_cmd:
1474 sc->result = DID_NO_CONNECT << 16;
1475 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, "wq_copy_cleanup_handler:"
1476 " DID_NO_CONNECT\n");
1477
1478 if (sc->scsi_done) {
1479 FNIC_TRACE(fnic_wq_copy_cleanup_handler,
1480 sc->device->host->host_no, id, sc,
1481 jiffies_to_msecs(jiffies - start_time),
1482 0, ((u64)sc->cmnd[0] << 32 |
1483 (u64)sc->cmnd[2] << 24 | (u64)sc->cmnd[3] << 16 |
1484 (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
1485 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
1486
1487 sc->scsi_done(sc);
1488 }
1489}
1490
1491static inline int fnic_queue_abort_io_req(struct fnic *fnic, int tag,
1492 u32 task_req, u8 *fc_lun,
1493 struct fnic_io_req *io_req)
1494{
1495 struct vnic_wq_copy *wq = &fnic->wq_copy[0];
1496 struct Scsi_Host *host = fnic->lport->host;
1497 struct misc_stats *misc_stats = &fnic->fnic_stats.misc_stats;
1498 unsigned long flags;
1499
1500 spin_lock_irqsave(host->host_lock, flags);
1501 if (unlikely(fnic_chk_state_flags_locked(fnic,
1502 FNIC_FLAGS_IO_BLOCKED))) {
1503 spin_unlock_irqrestore(host->host_lock, flags);
1504 return 1;
1505 } else
1506 atomic_inc(&fnic->in_flight);
1507 spin_unlock_irqrestore(host->host_lock, flags);
1508
1509 spin_lock_irqsave(&fnic->wq_copy_lock[0], flags);
1510
1511 if (vnic_wq_copy_desc_avail(wq) <= fnic->wq_copy_desc_low[0])
1512 free_wq_copy_descs(fnic, wq);
1513
1514 if (!vnic_wq_copy_desc_avail(wq)) {
1515 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], flags);
1516 atomic_dec(&fnic->in_flight);
1517 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1518 "fnic_queue_abort_io_req: failure: no descriptors\n");
1519 atomic64_inc(&misc_stats->abts_cpwq_alloc_failures);
1520 return 1;
1521 }
1522 fnic_queue_wq_copy_desc_itmf(wq, tag | FNIC_TAG_ABORT,
1523 0, task_req, tag, fc_lun, io_req->port_id,
1524 fnic->config.ra_tov, fnic->config.ed_tov);
1525
1526 atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
1527 if (atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs) >
1528 atomic64_read(&fnic->fnic_stats.fw_stats.max_fw_reqs))
1529 atomic64_set(&fnic->fnic_stats.fw_stats.max_fw_reqs,
1530 atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs));
1531
1532 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], flags);
1533 atomic_dec(&fnic->in_flight);
1534
1535 return 0;
1536}
1537
1538static void fnic_rport_exch_reset(struct fnic *fnic, u32 port_id)
1539{
1540 int tag;
1541 int abt_tag;
1542 int term_cnt = 0;
1543 struct fnic_io_req *io_req;
1544 spinlock_t *io_lock;
1545 unsigned long flags;
1546 struct scsi_cmnd *sc;
1547 struct reset_stats *reset_stats = &fnic->fnic_stats.reset_stats;
1548 struct terminate_stats *term_stats = &fnic->fnic_stats.term_stats;
1549 struct scsi_lun fc_lun;
1550 enum fnic_ioreq_state old_ioreq_state;
1551
1552 FNIC_SCSI_DBG(KERN_DEBUG,
1553 fnic->lport->host,
1554 "fnic_rport_exch_reset called portid 0x%06x\n",
1555 port_id);
1556
1557 if (fnic->in_remove)
1558 return;
1559
1560 for (tag = 0; tag < fnic->fnic_max_tag_id; tag++) {
1561 abt_tag = tag;
1562 io_lock = fnic_io_lock_tag(fnic, tag);
1563 spin_lock_irqsave(io_lock, flags);
1564 sc = scsi_host_find_tag(fnic->lport->host, tag);
1565 if (!sc) {
1566 spin_unlock_irqrestore(io_lock, flags);
1567 continue;
1568 }
1569
1570 io_req = (struct fnic_io_req *)CMD_SP(sc);
1571
1572 if (!io_req || io_req->port_id != port_id) {
1573 spin_unlock_irqrestore(io_lock, flags);
1574 continue;
1575 }
1576
1577 if ((CMD_FLAGS(sc) & FNIC_DEVICE_RESET) &&
1578 (!(CMD_FLAGS(sc) & FNIC_DEV_RST_ISSUED))) {
1579 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1580 "fnic_rport_exch_reset dev rst not pending sc 0x%p\n",
1581 sc);
1582 spin_unlock_irqrestore(io_lock, flags);
1583 continue;
1584 }
1585
1586
1587
1588
1589
1590 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
1591 spin_unlock_irqrestore(io_lock, flags);
1592 continue;
1593 }
1594 if (io_req->abts_done) {
1595 shost_printk(KERN_ERR, fnic->lport->host,
1596 "fnic_rport_exch_reset: io_req->abts_done is set "
1597 "state is %s\n",
1598 fnic_ioreq_state_to_str(CMD_STATE(sc)));
1599 }
1600
1601 if (!(CMD_FLAGS(sc) & FNIC_IO_ISSUED)) {
1602 shost_printk(KERN_ERR, fnic->lport->host,
1603 "rport_exch_reset "
1604 "IO not yet issued %p tag 0x%x flags "
1605 "%x state %d\n",
1606 sc, tag, CMD_FLAGS(sc), CMD_STATE(sc));
1607 }
1608 old_ioreq_state = CMD_STATE(sc);
1609 CMD_STATE(sc) = FNIC_IOREQ_ABTS_PENDING;
1610 CMD_ABTS_STATUS(sc) = FCPIO_INVALID_CODE;
1611 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET) {
1612 atomic64_inc(&reset_stats->device_reset_terminates);
1613 abt_tag = (tag | FNIC_TAG_DEV_RST);
1614 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1615 "fnic_rport_exch_reset dev rst sc 0x%p\n",
1616 sc);
1617 }
1618
1619 BUG_ON(io_req->abts_done);
1620
1621 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1622 "fnic_rport_reset_exch: Issuing abts\n");
1623
1624 spin_unlock_irqrestore(io_lock, flags);
1625
1626
1627 int_to_scsilun(sc->device->lun, &fc_lun);
1628
1629 if (fnic_queue_abort_io_req(fnic, abt_tag,
1630 FCPIO_ITMF_ABT_TASK_TERM,
1631 fc_lun.scsi_lun, io_req)) {
1632
1633
1634
1635
1636
1637
1638 spin_lock_irqsave(io_lock, flags);
1639 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING)
1640 CMD_STATE(sc) = old_ioreq_state;
1641 spin_unlock_irqrestore(io_lock, flags);
1642 } else {
1643 spin_lock_irqsave(io_lock, flags);
1644 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET)
1645 CMD_FLAGS(sc) |= FNIC_DEV_RST_TERM_ISSUED;
1646 else
1647 CMD_FLAGS(sc) |= FNIC_IO_INTERNAL_TERM_ISSUED;
1648 spin_unlock_irqrestore(io_lock, flags);
1649 atomic64_inc(&term_stats->terminates);
1650 term_cnt++;
1651 }
1652 }
1653 if (term_cnt > atomic64_read(&term_stats->max_terminates))
1654 atomic64_set(&term_stats->max_terminates, term_cnt);
1655
1656}
1657
1658void fnic_terminate_rport_io(struct fc_rport *rport)
1659{
1660 int tag;
1661 int abt_tag;
1662 int term_cnt = 0;
1663 struct fnic_io_req *io_req;
1664 spinlock_t *io_lock;
1665 unsigned long flags;
1666 struct scsi_cmnd *sc;
1667 struct scsi_lun fc_lun;
1668 struct fc_rport_libfc_priv *rdata;
1669 struct fc_lport *lport;
1670 struct fnic *fnic;
1671 struct fc_rport *cmd_rport;
1672 struct reset_stats *reset_stats;
1673 struct terminate_stats *term_stats;
1674 enum fnic_ioreq_state old_ioreq_state;
1675
1676 if (!rport) {
1677 printk(KERN_ERR "fnic_terminate_rport_io: rport is NULL\n");
1678 return;
1679 }
1680 rdata = rport->dd_data;
1681
1682 if (!rdata) {
1683 printk(KERN_ERR "fnic_terminate_rport_io: rdata is NULL\n");
1684 return;
1685 }
1686 lport = rdata->local_port;
1687
1688 if (!lport) {
1689 printk(KERN_ERR "fnic_terminate_rport_io: lport is NULL\n");
1690 return;
1691 }
1692 fnic = lport_priv(lport);
1693 FNIC_SCSI_DBG(KERN_DEBUG,
1694 fnic->lport->host, "fnic_terminate_rport_io called"
1695 " wwpn 0x%llx, wwnn0x%llx, rport 0x%p, portid 0x%06x\n",
1696 rport->port_name, rport->node_name, rport,
1697 rport->port_id);
1698
1699 if (fnic->in_remove)
1700 return;
1701
1702 reset_stats = &fnic->fnic_stats.reset_stats;
1703 term_stats = &fnic->fnic_stats.term_stats;
1704
1705 for (tag = 0; tag < fnic->fnic_max_tag_id; tag++) {
1706 abt_tag = tag;
1707 io_lock = fnic_io_lock_tag(fnic, tag);
1708 spin_lock_irqsave(io_lock, flags);
1709 sc = scsi_host_find_tag(fnic->lport->host, tag);
1710 if (!sc) {
1711 spin_unlock_irqrestore(io_lock, flags);
1712 continue;
1713 }
1714
1715 cmd_rport = starget_to_rport(scsi_target(sc->device));
1716 if (rport != cmd_rport) {
1717 spin_unlock_irqrestore(io_lock, flags);
1718 continue;
1719 }
1720
1721 io_req = (struct fnic_io_req *)CMD_SP(sc);
1722
1723 if (!io_req || rport != cmd_rport) {
1724 spin_unlock_irqrestore(io_lock, flags);
1725 continue;
1726 }
1727
1728 if ((CMD_FLAGS(sc) & FNIC_DEVICE_RESET) &&
1729 (!(CMD_FLAGS(sc) & FNIC_DEV_RST_ISSUED))) {
1730 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1731 "fnic_terminate_rport_io dev rst not pending sc 0x%p\n",
1732 sc);
1733 spin_unlock_irqrestore(io_lock, flags);
1734 continue;
1735 }
1736
1737
1738
1739
1740 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
1741 spin_unlock_irqrestore(io_lock, flags);
1742 continue;
1743 }
1744 if (io_req->abts_done) {
1745 shost_printk(KERN_ERR, fnic->lport->host,
1746 "fnic_terminate_rport_io: io_req->abts_done is set "
1747 "state is %s\n",
1748 fnic_ioreq_state_to_str(CMD_STATE(sc)));
1749 }
1750 if (!(CMD_FLAGS(sc) & FNIC_IO_ISSUED)) {
1751 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
1752 "fnic_terminate_rport_io "
1753 "IO not yet issued %p tag 0x%x flags "
1754 "%x state %d\n",
1755 sc, tag, CMD_FLAGS(sc), CMD_STATE(sc));
1756 }
1757 old_ioreq_state = CMD_STATE(sc);
1758 CMD_STATE(sc) = FNIC_IOREQ_ABTS_PENDING;
1759 CMD_ABTS_STATUS(sc) = FCPIO_INVALID_CODE;
1760 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET) {
1761 atomic64_inc(&reset_stats->device_reset_terminates);
1762 abt_tag = (tag | FNIC_TAG_DEV_RST);
1763 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1764 "fnic_terminate_rport_io dev rst sc 0x%p\n", sc);
1765 }
1766
1767 BUG_ON(io_req->abts_done);
1768
1769 FNIC_SCSI_DBG(KERN_DEBUG,
1770 fnic->lport->host,
1771 "fnic_terminate_rport_io: Issuing abts\n");
1772
1773 spin_unlock_irqrestore(io_lock, flags);
1774
1775
1776 int_to_scsilun(sc->device->lun, &fc_lun);
1777
1778 if (fnic_queue_abort_io_req(fnic, abt_tag,
1779 FCPIO_ITMF_ABT_TASK_TERM,
1780 fc_lun.scsi_lun, io_req)) {
1781
1782
1783
1784
1785
1786
1787 spin_lock_irqsave(io_lock, flags);
1788 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING)
1789 CMD_STATE(sc) = old_ioreq_state;
1790 spin_unlock_irqrestore(io_lock, flags);
1791 } else {
1792 spin_lock_irqsave(io_lock, flags);
1793 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET)
1794 CMD_FLAGS(sc) |= FNIC_DEV_RST_TERM_ISSUED;
1795 else
1796 CMD_FLAGS(sc) |= FNIC_IO_INTERNAL_TERM_ISSUED;
1797 spin_unlock_irqrestore(io_lock, flags);
1798 atomic64_inc(&term_stats->terminates);
1799 term_cnt++;
1800 }
1801 }
1802 if (term_cnt > atomic64_read(&term_stats->max_terminates))
1803 atomic64_set(&term_stats->max_terminates, term_cnt);
1804
1805}
1806
1807
1808
1809
1810
1811
1812int fnic_abort_cmd(struct scsi_cmnd *sc)
1813{
1814 struct fc_lport *lp;
1815 struct fnic *fnic;
1816 struct fnic_io_req *io_req = NULL;
1817 struct fc_rport *rport;
1818 spinlock_t *io_lock;
1819 unsigned long flags;
1820 unsigned long start_time = 0;
1821 int ret = SUCCESS;
1822 u32 task_req = 0;
1823 struct scsi_lun fc_lun;
1824 struct fnic_stats *fnic_stats;
1825 struct abort_stats *abts_stats;
1826 struct terminate_stats *term_stats;
1827 enum fnic_ioreq_state old_ioreq_state;
1828 int tag;
1829 unsigned long abt_issued_time;
1830 DECLARE_COMPLETION_ONSTACK(tm_done);
1831
1832
1833 fc_block_scsi_eh(sc);
1834
1835
1836 lp = shost_priv(sc->device->host);
1837
1838 fnic = lport_priv(lp);
1839 fnic_stats = &fnic->fnic_stats;
1840 abts_stats = &fnic->fnic_stats.abts_stats;
1841 term_stats = &fnic->fnic_stats.term_stats;
1842
1843 rport = starget_to_rport(scsi_target(sc->device));
1844 tag = sc->request->tag;
1845 FNIC_SCSI_DBG(KERN_DEBUG,
1846 fnic->lport->host,
1847 "Abort Cmd called FCID 0x%x, LUN 0x%llx TAG %x flags %x\n",
1848 rport->port_id, sc->device->lun, tag, CMD_FLAGS(sc));
1849
1850 CMD_FLAGS(sc) = FNIC_NO_FLAGS;
1851
1852 if (lp->state != LPORT_ST_READY || !(lp->link_up)) {
1853 ret = FAILED;
1854 goto fnic_abort_cmd_end;
1855 }
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869 io_lock = fnic_io_lock_hash(fnic, sc);
1870 spin_lock_irqsave(io_lock, flags);
1871 io_req = (struct fnic_io_req *)CMD_SP(sc);
1872 if (!io_req) {
1873 spin_unlock_irqrestore(io_lock, flags);
1874 goto fnic_abort_cmd_end;
1875 }
1876
1877 io_req->abts_done = &tm_done;
1878
1879 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
1880 spin_unlock_irqrestore(io_lock, flags);
1881 goto wait_pending;
1882 }
1883
1884 abt_issued_time = jiffies_to_msecs(jiffies) - jiffies_to_msecs(io_req->start_time);
1885 if (abt_issued_time <= 6000)
1886 atomic64_inc(&abts_stats->abort_issued_btw_0_to_6_sec);
1887 else if (abt_issued_time > 6000 && abt_issued_time <= 20000)
1888 atomic64_inc(&abts_stats->abort_issued_btw_6_to_20_sec);
1889 else if (abt_issued_time > 20000 && abt_issued_time <= 30000)
1890 atomic64_inc(&abts_stats->abort_issued_btw_20_to_30_sec);
1891 else if (abt_issued_time > 30000 && abt_issued_time <= 40000)
1892 atomic64_inc(&abts_stats->abort_issued_btw_30_to_40_sec);
1893 else if (abt_issued_time > 40000 && abt_issued_time <= 50000)
1894 atomic64_inc(&abts_stats->abort_issued_btw_40_to_50_sec);
1895 else if (abt_issued_time > 50000 && abt_issued_time <= 60000)
1896 atomic64_inc(&abts_stats->abort_issued_btw_50_to_60_sec);
1897 else
1898 atomic64_inc(&abts_stats->abort_issued_greater_than_60_sec);
1899
1900 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
1901 "CBD Opcode: %02x Abort issued time: %lu msec\n", sc->cmnd[0], abt_issued_time);
1902
1903
1904
1905
1906
1907
1908 old_ioreq_state = CMD_STATE(sc);
1909 CMD_STATE(sc) = FNIC_IOREQ_ABTS_PENDING;
1910 CMD_ABTS_STATUS(sc) = FCPIO_INVALID_CODE;
1911
1912 spin_unlock_irqrestore(io_lock, flags);
1913
1914
1915
1916
1917
1918
1919 if (fc_remote_port_chkready(rport) == 0)
1920 task_req = FCPIO_ITMF_ABT_TASK;
1921 else {
1922 atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
1923 task_req = FCPIO_ITMF_ABT_TASK_TERM;
1924 }
1925
1926
1927 int_to_scsilun(sc->device->lun, &fc_lun);
1928
1929 if (fnic_queue_abort_io_req(fnic, sc->request->tag, task_req,
1930 fc_lun.scsi_lun, io_req)) {
1931 spin_lock_irqsave(io_lock, flags);
1932 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING)
1933 CMD_STATE(sc) = old_ioreq_state;
1934 io_req = (struct fnic_io_req *)CMD_SP(sc);
1935 if (io_req)
1936 io_req->abts_done = NULL;
1937 spin_unlock_irqrestore(io_lock, flags);
1938 ret = FAILED;
1939 goto fnic_abort_cmd_end;
1940 }
1941 if (task_req == FCPIO_ITMF_ABT_TASK) {
1942 CMD_FLAGS(sc) |= FNIC_IO_ABTS_ISSUED;
1943 atomic64_inc(&fnic_stats->abts_stats.aborts);
1944 } else {
1945 CMD_FLAGS(sc) |= FNIC_IO_TERM_ISSUED;
1946 atomic64_inc(&fnic_stats->term_stats.terminates);
1947 }
1948
1949
1950
1951
1952
1953
1954 wait_pending:
1955 wait_for_completion_timeout(&tm_done,
1956 msecs_to_jiffies
1957 (2 * fnic->config.ra_tov +
1958 fnic->config.ed_tov));
1959
1960
1961 spin_lock_irqsave(io_lock, flags);
1962
1963 io_req = (struct fnic_io_req *)CMD_SP(sc);
1964 if (!io_req) {
1965 atomic64_inc(&fnic_stats->io_stats.ioreq_null);
1966 spin_unlock_irqrestore(io_lock, flags);
1967 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_REQ_NULL;
1968 ret = FAILED;
1969 goto fnic_abort_cmd_end;
1970 }
1971 io_req->abts_done = NULL;
1972
1973
1974 if (CMD_ABTS_STATUS(sc) == FCPIO_INVALID_CODE) {
1975 spin_unlock_irqrestore(io_lock, flags);
1976 if (task_req == FCPIO_ITMF_ABT_TASK) {
1977 atomic64_inc(&abts_stats->abort_drv_timeouts);
1978 } else {
1979 atomic64_inc(&term_stats->terminate_drv_timeouts);
1980 }
1981 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_TIMED_OUT;
1982 ret = FAILED;
1983 goto fnic_abort_cmd_end;
1984 }
1985
1986
1987
1988 if (!(CMD_FLAGS(sc) & (FNIC_IO_ABORTED | FNIC_IO_DONE))) {
1989 spin_unlock_irqrestore(io_lock, flags);
1990 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
1991 "Issuing Host reset due to out of order IO\n");
1992
1993 ret = FAILED;
1994 goto fnic_abort_cmd_end;
1995 }
1996
1997 CMD_STATE(sc) = FNIC_IOREQ_ABTS_COMPLETE;
1998
1999 start_time = io_req->start_time;
2000
2001
2002
2003
2004
2005 if (CMD_ABTS_STATUS(sc) == FCPIO_SUCCESS)
2006 CMD_SP(sc) = NULL;
2007 else {
2008 ret = FAILED;
2009 spin_unlock_irqrestore(io_lock, flags);
2010 goto fnic_abort_cmd_end;
2011 }
2012
2013 spin_unlock_irqrestore(io_lock, flags);
2014
2015 fnic_release_ioreq_buf(fnic, io_req, sc);
2016 mempool_free(io_req, fnic->io_req_pool);
2017
2018 if (sc->scsi_done) {
2019
2020 sc->result = (DID_ABORT << 16);
2021 sc->scsi_done(sc);
2022 atomic64_dec(&fnic_stats->io_stats.active_ios);
2023 if (atomic64_read(&fnic->io_cmpl_skip))
2024 atomic64_dec(&fnic->io_cmpl_skip);
2025 else
2026 atomic64_inc(&fnic_stats->io_stats.io_completions);
2027 }
2028
2029fnic_abort_cmd_end:
2030 FNIC_TRACE(fnic_abort_cmd, sc->device->host->host_no,
2031 sc->request->tag, sc,
2032 jiffies_to_msecs(jiffies - start_time),
2033 0, ((u64)sc->cmnd[0] << 32 |
2034 (u64)sc->cmnd[2] << 24 | (u64)sc->cmnd[3] << 16 |
2035 (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
2036 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
2037
2038 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2039 "Returning from abort cmd type %x %s\n", task_req,
2040 (ret == SUCCESS) ?
2041 "SUCCESS" : "FAILED");
2042 return ret;
2043}
2044
2045static inline int fnic_queue_dr_io_req(struct fnic *fnic,
2046 struct scsi_cmnd *sc,
2047 struct fnic_io_req *io_req)
2048{
2049 struct vnic_wq_copy *wq = &fnic->wq_copy[0];
2050 struct Scsi_Host *host = fnic->lport->host;
2051 struct misc_stats *misc_stats = &fnic->fnic_stats.misc_stats;
2052 struct scsi_lun fc_lun;
2053 int ret = 0;
2054 unsigned long intr_flags;
2055
2056 spin_lock_irqsave(host->host_lock, intr_flags);
2057 if (unlikely(fnic_chk_state_flags_locked(fnic,
2058 FNIC_FLAGS_IO_BLOCKED))) {
2059 spin_unlock_irqrestore(host->host_lock, intr_flags);
2060 return FAILED;
2061 } else
2062 atomic_inc(&fnic->in_flight);
2063 spin_unlock_irqrestore(host->host_lock, intr_flags);
2064
2065 spin_lock_irqsave(&fnic->wq_copy_lock[0], intr_flags);
2066
2067 if (vnic_wq_copy_desc_avail(wq) <= fnic->wq_copy_desc_low[0])
2068 free_wq_copy_descs(fnic, wq);
2069
2070 if (!vnic_wq_copy_desc_avail(wq)) {
2071 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2072 "queue_dr_io_req failure - no descriptors\n");
2073 atomic64_inc(&misc_stats->devrst_cpwq_alloc_failures);
2074 ret = -EAGAIN;
2075 goto lr_io_req_end;
2076 }
2077
2078
2079 int_to_scsilun(sc->device->lun, &fc_lun);
2080
2081 fnic_queue_wq_copy_desc_itmf(wq, sc->request->tag | FNIC_TAG_DEV_RST,
2082 0, FCPIO_ITMF_LUN_RESET, SCSI_NO_TAG,
2083 fc_lun.scsi_lun, io_req->port_id,
2084 fnic->config.ra_tov, fnic->config.ed_tov);
2085
2086 atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
2087 if (atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs) >
2088 atomic64_read(&fnic->fnic_stats.fw_stats.max_fw_reqs))
2089 atomic64_set(&fnic->fnic_stats.fw_stats.max_fw_reqs,
2090 atomic64_read(&fnic->fnic_stats.fw_stats.active_fw_reqs));
2091
2092lr_io_req_end:
2093 spin_unlock_irqrestore(&fnic->wq_copy_lock[0], intr_flags);
2094 atomic_dec(&fnic->in_flight);
2095
2096 return ret;
2097}
2098
2099
2100
2101
2102
2103
2104
2105static int fnic_clean_pending_aborts(struct fnic *fnic,
2106 struct scsi_cmnd *lr_sc,
2107 bool new_sc)
2108
2109{
2110 int tag, abt_tag;
2111 struct fnic_io_req *io_req;
2112 spinlock_t *io_lock;
2113 unsigned long flags;
2114 int ret = 0;
2115 struct scsi_cmnd *sc;
2116 struct scsi_lun fc_lun;
2117 struct scsi_device *lun_dev = lr_sc->device;
2118 DECLARE_COMPLETION_ONSTACK(tm_done);
2119 enum fnic_ioreq_state old_ioreq_state;
2120
2121 for (tag = 0; tag < fnic->fnic_max_tag_id; tag++) {
2122 io_lock = fnic_io_lock_tag(fnic, tag);
2123 spin_lock_irqsave(io_lock, flags);
2124 sc = scsi_host_find_tag(fnic->lport->host, tag);
2125
2126
2127
2128
2129 if (!sc || ((sc == lr_sc) && new_sc) || sc->device != lun_dev) {
2130 spin_unlock_irqrestore(io_lock, flags);
2131 continue;
2132 }
2133
2134 io_req = (struct fnic_io_req *)CMD_SP(sc);
2135
2136 if (!io_req || sc->device != lun_dev) {
2137 spin_unlock_irqrestore(io_lock, flags);
2138 continue;
2139 }
2140
2141
2142
2143
2144
2145 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2146 "Found IO in %s on lun\n",
2147 fnic_ioreq_state_to_str(CMD_STATE(sc)));
2148
2149 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING) {
2150 spin_unlock_irqrestore(io_lock, flags);
2151 continue;
2152 }
2153 if ((CMD_FLAGS(sc) & FNIC_DEVICE_RESET) &&
2154 (!(CMD_FLAGS(sc) & FNIC_DEV_RST_ISSUED))) {
2155 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
2156 "%s dev rst not pending sc 0x%p\n", __func__,
2157 sc);
2158 spin_unlock_irqrestore(io_lock, flags);
2159 continue;
2160 }
2161
2162 if (io_req->abts_done)
2163 shost_printk(KERN_ERR, fnic->lport->host,
2164 "%s: io_req->abts_done is set state is %s\n",
2165 __func__, fnic_ioreq_state_to_str(CMD_STATE(sc)));
2166 old_ioreq_state = CMD_STATE(sc);
2167
2168
2169
2170
2171
2172
2173
2174 CMD_STATE(sc) = FNIC_IOREQ_ABTS_PENDING;
2175
2176 BUG_ON(io_req->abts_done);
2177
2178 abt_tag = tag;
2179 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET) {
2180 abt_tag |= FNIC_TAG_DEV_RST;
2181 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
2182 "%s: dev rst sc 0x%p\n", __func__, sc);
2183 }
2184
2185 CMD_ABTS_STATUS(sc) = FCPIO_INVALID_CODE;
2186 io_req->abts_done = &tm_done;
2187 spin_unlock_irqrestore(io_lock, flags);
2188
2189
2190 int_to_scsilun(sc->device->lun, &fc_lun);
2191
2192 if (fnic_queue_abort_io_req(fnic, abt_tag,
2193 FCPIO_ITMF_ABT_TASK_TERM,
2194 fc_lun.scsi_lun, io_req)) {
2195 spin_lock_irqsave(io_lock, flags);
2196 io_req = (struct fnic_io_req *)CMD_SP(sc);
2197 if (io_req)
2198 io_req->abts_done = NULL;
2199 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING)
2200 CMD_STATE(sc) = old_ioreq_state;
2201 spin_unlock_irqrestore(io_lock, flags);
2202 ret = 1;
2203 goto clean_pending_aborts_end;
2204 } else {
2205 spin_lock_irqsave(io_lock, flags);
2206 if (CMD_FLAGS(sc) & FNIC_DEVICE_RESET)
2207 CMD_FLAGS(sc) |= FNIC_DEV_RST_TERM_ISSUED;
2208 spin_unlock_irqrestore(io_lock, flags);
2209 }
2210 CMD_FLAGS(sc) |= FNIC_IO_INTERNAL_TERM_ISSUED;
2211
2212 wait_for_completion_timeout(&tm_done,
2213 msecs_to_jiffies
2214 (fnic->config.ed_tov));
2215
2216
2217 spin_lock_irqsave(io_lock, flags);
2218 io_req = (struct fnic_io_req *)CMD_SP(sc);
2219 if (!io_req) {
2220 spin_unlock_irqrestore(io_lock, flags);
2221 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_REQ_NULL;
2222 continue;
2223 }
2224
2225 io_req->abts_done = NULL;
2226
2227
2228 if (CMD_ABTS_STATUS(sc) == FCPIO_INVALID_CODE) {
2229 spin_unlock_irqrestore(io_lock, flags);
2230 CMD_FLAGS(sc) |= FNIC_IO_ABT_TERM_DONE;
2231 ret = 1;
2232 goto clean_pending_aborts_end;
2233 }
2234 CMD_STATE(sc) = FNIC_IOREQ_ABTS_COMPLETE;
2235
2236
2237 if (sc != lr_sc)
2238 CMD_SP(sc) = NULL;
2239 spin_unlock_irqrestore(io_lock, flags);
2240
2241
2242 if (sc != lr_sc) {
2243 fnic_release_ioreq_buf(fnic, io_req, sc);
2244 mempool_free(io_req, fnic->io_req_pool);
2245 }
2246
2247
2248
2249
2250
2251 if (sc->scsi_done) {
2252
2253 sc->result = DID_RESET << 16;
2254 sc->scsi_done(sc);
2255 }
2256 }
2257
2258 schedule_timeout(msecs_to_jiffies(2 * fnic->config.ed_tov));
2259
2260
2261 if (fnic_is_abts_pending(fnic, lr_sc))
2262 ret = FAILED;
2263
2264clean_pending_aborts_end:
2265 return ret;
2266}
2267
2268
2269
2270
2271
2272static inline int
2273fnic_scsi_host_start_tag(struct fnic *fnic, struct scsi_cmnd *sc)
2274{
2275 struct blk_queue_tag *bqt = fnic->lport->host->bqt;
2276 int tag, ret = SCSI_NO_TAG;
2277
2278 BUG_ON(!bqt);
2279 if (!bqt) {
2280 pr_err("Tags are not supported\n");
2281 goto end;
2282 }
2283
2284 do {
2285 tag = find_next_zero_bit(bqt->tag_map, bqt->max_depth, 1);
2286 if (tag >= bqt->max_depth) {
2287 pr_err("Tag allocation failure\n");
2288 goto end;
2289 }
2290 } while (test_and_set_bit(tag, bqt->tag_map));
2291
2292 bqt->tag_index[tag] = sc->request;
2293 sc->request->tag = tag;
2294 sc->tag = tag;
2295 if (!sc->request->special)
2296 sc->request->special = sc;
2297
2298 ret = tag;
2299
2300end:
2301 return ret;
2302}
2303
2304
2305
2306
2307
2308static inline void
2309fnic_scsi_host_end_tag(struct fnic *fnic, struct scsi_cmnd *sc)
2310{
2311 struct blk_queue_tag *bqt = fnic->lport->host->bqt;
2312 int tag = sc->request->tag;
2313
2314 if (tag == SCSI_NO_TAG)
2315 return;
2316
2317 BUG_ON(!bqt || !bqt->tag_index[tag]);
2318 if (!bqt)
2319 return;
2320
2321 bqt->tag_index[tag] = NULL;
2322 clear_bit(tag, bqt->tag_map);
2323
2324 return;
2325}
2326
2327
2328
2329
2330
2331
2332int fnic_device_reset(struct scsi_cmnd *sc)
2333{
2334 struct fc_lport *lp;
2335 struct fnic *fnic;
2336 struct fnic_io_req *io_req = NULL;
2337 struct fc_rport *rport;
2338 int status;
2339 int ret = FAILED;
2340 spinlock_t *io_lock;
2341 unsigned long flags;
2342 unsigned long start_time = 0;
2343 struct scsi_lun fc_lun;
2344 struct fnic_stats *fnic_stats;
2345 struct reset_stats *reset_stats;
2346 int tag = 0;
2347 DECLARE_COMPLETION_ONSTACK(tm_done);
2348 int tag_gen_flag = 0;
2349 bool new_sc = 0;
2350
2351
2352 fc_block_scsi_eh(sc);
2353
2354
2355 lp = shost_priv(sc->device->host);
2356
2357 fnic = lport_priv(lp);
2358 fnic_stats = &fnic->fnic_stats;
2359 reset_stats = &fnic->fnic_stats.reset_stats;
2360
2361 atomic64_inc(&reset_stats->device_resets);
2362
2363 rport = starget_to_rport(scsi_target(sc->device));
2364 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2365 "Device reset called FCID 0x%x, LUN 0x%llx sc 0x%p\n",
2366 rport->port_id, sc->device->lun, sc);
2367
2368 if (lp->state != LPORT_ST_READY || !(lp->link_up))
2369 goto fnic_device_reset_end;
2370
2371
2372 if (fc_remote_port_chkready(rport)) {
2373 atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
2374 goto fnic_device_reset_end;
2375 }
2376
2377 CMD_FLAGS(sc) = FNIC_DEVICE_RESET;
2378
2379
2380 tag = sc->request->tag;
2381 if (unlikely(tag < 0)) {
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396 tag = fnic_scsi_host_start_tag(fnic, sc);
2397 if (unlikely(tag == SCSI_NO_TAG))
2398 goto fnic_device_reset_end;
2399 tag_gen_flag = 1;
2400 new_sc = 1;
2401 }
2402 io_lock = fnic_io_lock_hash(fnic, sc);
2403 spin_lock_irqsave(io_lock, flags);
2404 io_req = (struct fnic_io_req *)CMD_SP(sc);
2405
2406
2407
2408
2409
2410 if (!io_req) {
2411 io_req = mempool_alloc(fnic->io_req_pool, GFP_ATOMIC);
2412 if (!io_req) {
2413 spin_unlock_irqrestore(io_lock, flags);
2414 goto fnic_device_reset_end;
2415 }
2416 memset(io_req, 0, sizeof(*io_req));
2417 io_req->port_id = rport->port_id;
2418 CMD_SP(sc) = (char *)io_req;
2419 }
2420 io_req->dr_done = &tm_done;
2421 CMD_STATE(sc) = FNIC_IOREQ_CMD_PENDING;
2422 CMD_LR_STATUS(sc) = FCPIO_INVALID_CODE;
2423 spin_unlock_irqrestore(io_lock, flags);
2424
2425 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, "TAG %x\n", tag);
2426
2427
2428
2429
2430
2431 if (fnic_queue_dr_io_req(fnic, sc, io_req)) {
2432 spin_lock_irqsave(io_lock, flags);
2433 io_req = (struct fnic_io_req *)CMD_SP(sc);
2434 if (io_req)
2435 io_req->dr_done = NULL;
2436 goto fnic_device_reset_clean;
2437 }
2438 spin_lock_irqsave(io_lock, flags);
2439 CMD_FLAGS(sc) |= FNIC_DEV_RST_ISSUED;
2440 spin_unlock_irqrestore(io_lock, flags);
2441
2442
2443
2444
2445
2446 wait_for_completion_timeout(&tm_done,
2447 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT));
2448
2449 spin_lock_irqsave(io_lock, flags);
2450 io_req = (struct fnic_io_req *)CMD_SP(sc);
2451 if (!io_req) {
2452 spin_unlock_irqrestore(io_lock, flags);
2453 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2454 "io_req is null tag 0x%x sc 0x%p\n", tag, sc);
2455 goto fnic_device_reset_end;
2456 }
2457 io_req->dr_done = NULL;
2458
2459 status = CMD_LR_STATUS(sc);
2460
2461
2462
2463
2464
2465 if (status == FCPIO_INVALID_CODE) {
2466 atomic64_inc(&reset_stats->device_reset_timeouts);
2467 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2468 "Device reset timed out\n");
2469 CMD_FLAGS(sc) |= FNIC_DEV_RST_TIMED_OUT;
2470 spin_unlock_irqrestore(io_lock, flags);
2471 int_to_scsilun(sc->device->lun, &fc_lun);
2472
2473
2474
2475
2476 while (1) {
2477 spin_lock_irqsave(io_lock, flags);
2478 if (CMD_FLAGS(sc) & FNIC_DEV_RST_TERM_ISSUED) {
2479 spin_unlock_irqrestore(io_lock, flags);
2480 break;
2481 }
2482 spin_unlock_irqrestore(io_lock, flags);
2483 if (fnic_queue_abort_io_req(fnic,
2484 tag | FNIC_TAG_DEV_RST,
2485 FCPIO_ITMF_ABT_TASK_TERM,
2486 fc_lun.scsi_lun, io_req)) {
2487 wait_for_completion_timeout(&tm_done,
2488 msecs_to_jiffies(FNIC_ABT_TERM_DELAY_TIMEOUT));
2489 } else {
2490 spin_lock_irqsave(io_lock, flags);
2491 CMD_FLAGS(sc) |= FNIC_DEV_RST_TERM_ISSUED;
2492 CMD_STATE(sc) = FNIC_IOREQ_ABTS_PENDING;
2493 io_req->abts_done = &tm_done;
2494 spin_unlock_irqrestore(io_lock, flags);
2495 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2496 "Abort and terminate issued on Device reset "
2497 "tag 0x%x sc 0x%p\n", tag, sc);
2498 break;
2499 }
2500 }
2501 while (1) {
2502 spin_lock_irqsave(io_lock, flags);
2503 if (!(CMD_FLAGS(sc) & FNIC_DEV_RST_DONE)) {
2504 spin_unlock_irqrestore(io_lock, flags);
2505 wait_for_completion_timeout(&tm_done,
2506 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT));
2507 break;
2508 } else {
2509 io_req = (struct fnic_io_req *)CMD_SP(sc);
2510 io_req->abts_done = NULL;
2511 goto fnic_device_reset_clean;
2512 }
2513 }
2514 } else {
2515 spin_unlock_irqrestore(io_lock, flags);
2516 }
2517
2518
2519 if (status != FCPIO_SUCCESS) {
2520 spin_lock_irqsave(io_lock, flags);
2521 FNIC_SCSI_DBG(KERN_DEBUG,
2522 fnic->lport->host,
2523 "Device reset completed - failed\n");
2524 io_req = (struct fnic_io_req *)CMD_SP(sc);
2525 goto fnic_device_reset_clean;
2526 }
2527
2528
2529
2530
2531
2532
2533
2534
2535 if (fnic_clean_pending_aborts(fnic, sc, new_sc)) {
2536 spin_lock_irqsave(io_lock, flags);
2537 io_req = (struct fnic_io_req *)CMD_SP(sc);
2538 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2539 "Device reset failed"
2540 " since could not abort all IOs\n");
2541 goto fnic_device_reset_clean;
2542 }
2543
2544
2545 spin_lock_irqsave(io_lock, flags);
2546 io_req = (struct fnic_io_req *)CMD_SP(sc);
2547 if (io_req)
2548
2549 ret = SUCCESS;
2550
2551fnic_device_reset_clean:
2552 if (io_req)
2553 CMD_SP(sc) = NULL;
2554
2555 spin_unlock_irqrestore(io_lock, flags);
2556
2557 if (io_req) {
2558 start_time = io_req->start_time;
2559 fnic_release_ioreq_buf(fnic, io_req, sc);
2560 mempool_free(io_req, fnic->io_req_pool);
2561 }
2562
2563fnic_device_reset_end:
2564 FNIC_TRACE(fnic_device_reset, sc->device->host->host_no,
2565 sc->request->tag, sc,
2566 jiffies_to_msecs(jiffies - start_time),
2567 0, ((u64)sc->cmnd[0] << 32 |
2568 (u64)sc->cmnd[2] << 24 | (u64)sc->cmnd[3] << 16 |
2569 (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
2570 (((u64)CMD_FLAGS(sc) << 32) | CMD_STATE(sc)));
2571
2572
2573 if (unlikely(tag_gen_flag))
2574 fnic_scsi_host_end_tag(fnic, sc);
2575
2576 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2577 "Returning from device reset %s\n",
2578 (ret == SUCCESS) ?
2579 "SUCCESS" : "FAILED");
2580
2581 if (ret == FAILED)
2582 atomic64_inc(&reset_stats->device_reset_failures);
2583
2584 return ret;
2585}
2586
2587
2588int fnic_reset(struct Scsi_Host *shost)
2589{
2590 struct fc_lport *lp;
2591 struct fnic *fnic;
2592 int ret = 0;
2593 struct reset_stats *reset_stats;
2594
2595 lp = shost_priv(shost);
2596 fnic = lport_priv(lp);
2597 reset_stats = &fnic->fnic_stats.reset_stats;
2598
2599 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2600 "fnic_reset called\n");
2601
2602 atomic64_inc(&reset_stats->fnic_resets);
2603
2604
2605
2606
2607
2608 ret = fc_lport_reset(lp);
2609
2610 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2611 "Returning from fnic reset %s\n",
2612 (ret == 0) ?
2613 "SUCCESS" : "FAILED");
2614
2615 if (ret == 0)
2616 atomic64_inc(&reset_stats->fnic_reset_completions);
2617 else
2618 atomic64_inc(&reset_stats->fnic_reset_failures);
2619
2620 return ret;
2621}
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632int fnic_host_reset(struct scsi_cmnd *sc)
2633{
2634 int ret;
2635 unsigned long wait_host_tmo;
2636 struct Scsi_Host *shost = sc->device->host;
2637 struct fc_lport *lp = shost_priv(shost);
2638 struct fnic *fnic = lport_priv(lp);
2639 unsigned long flags;
2640
2641 spin_lock_irqsave(&fnic->fnic_lock, flags);
2642 if (fnic->internal_reset_inprogress == 0) {
2643 fnic->internal_reset_inprogress = 1;
2644 } else {
2645 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2646 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2647 "host reset in progress skipping another host reset\n");
2648 return SUCCESS;
2649 }
2650 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2651
2652
2653
2654
2655
2656
2657 ret = (fnic_reset(shost) == 0) ? SUCCESS : FAILED;
2658 if (ret == SUCCESS) {
2659 wait_host_tmo = jiffies + FNIC_HOST_RESET_SETTLE_TIME * HZ;
2660 ret = FAILED;
2661 while (time_before(jiffies, wait_host_tmo)) {
2662 if ((lp->state == LPORT_ST_READY) &&
2663 (lp->link_up)) {
2664 ret = SUCCESS;
2665 break;
2666 }
2667 ssleep(1);
2668 }
2669 }
2670
2671 spin_lock_irqsave(&fnic->fnic_lock, flags);
2672 fnic->internal_reset_inprogress = 0;
2673 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2674 return ret;
2675}
2676
2677
2678
2679
2680void fnic_scsi_abort_io(struct fc_lport *lp)
2681{
2682 int err = 0;
2683 unsigned long flags;
2684 enum fnic_state old_state;
2685 struct fnic *fnic = lport_priv(lp);
2686 DECLARE_COMPLETION_ONSTACK(remove_wait);
2687
2688
2689retry_fw_reset:
2690 spin_lock_irqsave(&fnic->fnic_lock, flags);
2691 if (unlikely(fnic->state == FNIC_IN_FC_TRANS_ETH_MODE)) {
2692
2693 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2694 schedule_timeout(msecs_to_jiffies(100));
2695 goto retry_fw_reset;
2696 }
2697
2698 fnic->remove_wait = &remove_wait;
2699 old_state = fnic->state;
2700 fnic->state = FNIC_IN_FC_TRANS_ETH_MODE;
2701 fnic_update_mac_locked(fnic, fnic->ctlr.ctl_src_addr);
2702 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2703
2704 err = fnic_fw_reset_handler(fnic);
2705 if (err) {
2706 spin_lock_irqsave(&fnic->fnic_lock, flags);
2707 if (fnic->state == FNIC_IN_FC_TRANS_ETH_MODE)
2708 fnic->state = old_state;
2709 fnic->remove_wait = NULL;
2710 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2711 return;
2712 }
2713
2714
2715 wait_for_completion_timeout(&remove_wait,
2716 msecs_to_jiffies(FNIC_RMDEVICE_TIMEOUT));
2717
2718 spin_lock_irqsave(&fnic->fnic_lock, flags);
2719 fnic->remove_wait = NULL;
2720 FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
2721 "fnic_scsi_abort_io %s\n",
2722 (fnic->state == FNIC_IN_ETH_MODE) ?
2723 "SUCCESS" : "FAILED");
2724 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2725
2726}
2727
2728
2729
2730
2731void fnic_scsi_cleanup(struct fc_lport *lp)
2732{
2733 unsigned long flags;
2734 enum fnic_state old_state;
2735 struct fnic *fnic = lport_priv(lp);
2736
2737
2738retry_fw_reset:
2739 spin_lock_irqsave(&fnic->fnic_lock, flags);
2740 if (unlikely(fnic->state == FNIC_IN_FC_TRANS_ETH_MODE)) {
2741
2742 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2743 schedule_timeout(msecs_to_jiffies(100));
2744 goto retry_fw_reset;
2745 }
2746 old_state = fnic->state;
2747 fnic->state = FNIC_IN_FC_TRANS_ETH_MODE;
2748 fnic_update_mac_locked(fnic, fnic->ctlr.ctl_src_addr);
2749 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2750
2751 if (fnic_fw_reset_handler(fnic)) {
2752 spin_lock_irqsave(&fnic->fnic_lock, flags);
2753 if (fnic->state == FNIC_IN_FC_TRANS_ETH_MODE)
2754 fnic->state = old_state;
2755 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
2756 }
2757
2758}
2759
2760void fnic_empty_scsi_cleanup(struct fc_lport *lp)
2761{
2762}
2763
2764void fnic_exch_mgr_reset(struct fc_lport *lp, u32 sid, u32 did)
2765{
2766 struct fnic *fnic = lport_priv(lp);
2767
2768
2769 if (sid)
2770 goto call_fc_exch_mgr_reset;
2771
2772 if (did) {
2773 fnic_rport_exch_reset(fnic, did);
2774 goto call_fc_exch_mgr_reset;
2775 }
2776
2777
2778
2779
2780
2781 if (!fnic->in_remove)
2782 fnic_scsi_cleanup(lp);
2783 else
2784 fnic_scsi_abort_io(lp);
2785
2786
2787call_fc_exch_mgr_reset:
2788 fc_exch_mgr_reset(lp, sid, did);
2789
2790}
2791
2792
2793
2794
2795
2796
2797
2798
2799int fnic_is_abts_pending(struct fnic *fnic, struct scsi_cmnd *lr_sc)
2800{
2801 int tag;
2802 struct fnic_io_req *io_req;
2803 spinlock_t *io_lock;
2804 unsigned long flags;
2805 int ret = 0;
2806 struct scsi_cmnd *sc;
2807 struct scsi_device *lun_dev = NULL;
2808
2809 if (lr_sc)
2810 lun_dev = lr_sc->device;
2811
2812
2813 for (tag = 0; tag < fnic->fnic_max_tag_id; tag++) {
2814 sc = scsi_host_find_tag(fnic->lport->host, tag);
2815
2816
2817
2818
2819 if (!sc || (lr_sc && (sc->device != lun_dev || sc == lr_sc)))
2820 continue;
2821
2822 io_lock = fnic_io_lock_hash(fnic, sc);
2823 spin_lock_irqsave(io_lock, flags);
2824
2825 io_req = (struct fnic_io_req *)CMD_SP(sc);
2826
2827 if (!io_req || sc->device != lun_dev) {
2828 spin_unlock_irqrestore(io_lock, flags);
2829 continue;
2830 }
2831
2832
2833
2834
2835
2836 FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
2837 "Found IO in %s on lun\n",
2838 fnic_ioreq_state_to_str(CMD_STATE(sc)));
2839
2840 if (CMD_STATE(sc) == FNIC_IOREQ_ABTS_PENDING)
2841 ret = 1;
2842 spin_unlock_irqrestore(io_lock, flags);
2843 }
2844
2845 return ret;
2846}
2847