if (!ret) {
                atomic64_inc(&fnic->fnic_stats.reset_stats.fw_resets);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                             "Issued fw reset\n");
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                               "Issued fw reset\n");
        } else {
                fnic_clear_state_flags(fnic, FNIC_FLAGS_FWRESET);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                             "Failed to issue fw reset\n");
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                               "Failed to issue fw reset\n");
        }
 
        return ret;
                                                fc_id, gw_mac,
                                                fnic->data_src_addr,
                                                lp->r_a_tov, lp->e_d_tov);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "FLOGI FIP reg issued fcid %x src %pM dest %pM\n",
                              fc_id, fnic->data_src_addr, gw_mac);
        } else {
                fnic_queue_wq_copy_desc_flogi_reg(wq, SCSI_NO_TAG,
                                                  format, fc_id, gw_mac);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                             "FLOGI reg issued fcid %x map %d dest %pM\n",
-                             fc_id, fnic->ctlr.map_dest, gw_mac);
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                       "FLOGI reg issued fcid 0x%x map %d dest 0x%p\n",
+                       fc_id, fnic->ctlr.map_dest, gw_mac);
        }
 
        atomic64_inc(&fnic->fnic_stats.fw_stats.active_fw_reqs);
                free_wq_copy_descs(fnic, wq, hwq);
 
        if (unlikely(!vnic_wq_copy_desc_avail(wq))) {
-               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
                          "fnic_queue_wq_copy_desc failure - no descriptors\n");
                atomic64_inc(&misc_stats->io_cpwq_alloc_failures);
                return SCSI_MLQUEUE_HOST_BUSY;
 
        if (unlikely(fnic_chk_state_flags_locked(fnic, FNIC_FLAGS_IO_BLOCKED))) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: fnic IO blocked flags: 0x%lx. Returning SCSI_MLQUEUE_HOST_BUSY\n",
-                       fnic->fnic_num, __func__, __LINE__, fnic->state_flags);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "fnic IO blocked flags: 0x%lx. Returning SCSI_MLQUEUE_HOST_BUSY\n",
+                       fnic->state_flags);
                return SCSI_MLQUEUE_HOST_BUSY;
        }
 
        if (unlikely(fnic_chk_state_flags_locked(fnic, FNIC_FLAGS_FWRESET))) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: fnic flags: 0x%lx. Returning SCSI_MLQUEUE_HOST_BUSY\n",
-                       fnic->fnic_num, __func__, __LINE__, fnic->state_flags);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "fnic flags: 0x%lx. Returning SCSI_MLQUEUE_HOST_BUSY\n",
+                       fnic->state_flags);
                return SCSI_MLQUEUE_HOST_BUSY;
        }
 
        rport = starget_to_rport(scsi_target(sc->device));
        if (!rport) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                "returning DID_NO_CONNECT for IO as rport is NULL\n");
                sc->result = DID_NO_CONNECT << 16;
                done(sc);
        ret = fc_remote_port_chkready(rport);
        if (ret) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                "rport is not ready\n");
                atomic64_inc(&fnic_stats->misc_stats.rport_not_ready);
                sc->result = ret;
        rp = rport->dd_data;
        if (!rp || rp->rp_state == RPORT_ST_DELETE) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                        "rport 0x%x removed, returning DID_NO_CONNECT\n",
                        rport->port_id);
 
 
        if (rp->rp_state != RPORT_ST_READY) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                        "rport 0x%x in state 0x%x, returning DID_IMM_RETRY\n",
                        rport->port_id, rp->rp_state);
 
 
        if (lp->state != LPORT_ST_READY || !(lp->link_up)) {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: state not ready: %d/link not up: %d Returning HOST_BUSY\n",
-                       fnic->fnic_num, __func__, __LINE__, lp->state, lp->link_up);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "state not ready: %d/link not up: %d Returning HOST_BUSY\n",
+                       lp->state, lp->link_up);
                return SCSI_MLQUEUE_HOST_BUSY;
        }
 
        if (fnic->state == FNIC_IN_FC_TRANS_ETH_MODE) {
                /* Check status of reset completion */
                if (!hdr_status) {
-                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                                     "reset cmpl success\n");
+                       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                                       "reset cmpl success\n");
                        /* Ready to send flogi out */
                        fnic->state = FNIC_IN_ETH_MODE;
                } else {
-                       FNIC_SCSI_DBG(KERN_DEBUG,
-                                     fnic->lport->host,
-                                     "fnic fw_reset : failed %s\n",
-                                     fnic_fcpio_status_to_str(hdr_status));
+                       FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                               "reset failed with header status: %s\n",
+                               fnic_fcpio_status_to_str(hdr_status));
 
                        /*
                         * Unable to change to eth mode, cannot send out flogi
                        ret = -1;
                }
        } else {
-               FNIC_SCSI_DBG(KERN_DEBUG,
-                             fnic->lport->host,
-                             "Unexpected state %s while processing"
-                             " reset cmpl\n", fnic_state_to_str(fnic->state));
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "Unexpected state while processing reset completion: %s\n",
+                       fnic_state_to_str(fnic->state));
                atomic64_inc(&reset_stats->fw_reset_failures);
                ret = -1;
        }
 
                /* Check flogi registration completion status */
                if (!hdr_status) {
-                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                      "flog reg succeeded\n");
                        fnic->state = FNIC_IN_FC_MODE;
                } else {
                        FNIC_SCSI_DBG(KERN_DEBUG,
-                                     fnic->lport->host,
+                                     fnic->lport->host, fnic->fnic_num,
                                      "fnic flogi reg :failed %s\n",
                                      fnic_fcpio_status_to_str(hdr_status));
                        fnic->state = FNIC_IN_ETH_MODE;
                        ret = -1;
                }
        } else {
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "Unexpected fnic state %s while"
                              " processing flogi reg completion\n",
                              fnic_state_to_str(fnic->state));
        hwq = blk_mq_unique_tag_to_hwq(mqtag);
 
        if (hwq != cq_index) {
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
-                       fnic->fnic_num, __func__, __LINE__, hwq, mqtag, tag, cq_index);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: hdr status: %s icmnd completion on the wrong queue\n",
-                       fnic->fnic_num, __func__, __LINE__,
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
+                       hwq, mqtag, tag, cq_index);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hdr status: %s icmnd completion on the wrong queue\n",
                        fnic_fcpio_status_to_str(hdr_status));
        }
 
        if (tag >= fnic->fnic_max_tag_id) {
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
-                       fnic->fnic_num, __func__, __LINE__, hwq, mqtag, tag, cq_index);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: hdr status: %s Out of range tag\n",
-                       fnic->fnic_num, __func__, __LINE__,
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
+                       hwq, mqtag, tag, cq_index);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hdr status: %s Out of range tag\n",
                        fnic_fcpio_status_to_str(hdr_status));
                return;
        }
                if(FCPIO_ABORTED == hdr_status)
                        fnic_priv(sc)->flags |= FNIC_IO_ABORTED;
 
-               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
                        "icmnd_cmpl abts pending "
                          "hdr status = %s tag = 0x%x sc = 0x%p "
                          "scsi_status = %x residual = %d\n",
        hwq = blk_mq_unique_tag_to_hwq(id & FNIC_TAG_MASK);
 
        if (hwq != cq_index) {
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
-                       __func__, __LINE__, hwq, mqtag, tag, cq_index);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hdr status: %s ITMF completion on the wrong queue\n",
-                       __func__, __LINE__,
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
+                       hwq, mqtag, tag, cq_index);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hdr status: %s ITMF completion on the wrong queue\n",
                        fnic_fcpio_status_to_str(hdr_status));
        }
 
        if (tag > fnic->fnic_max_tag_id) {
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
-                       __func__, __LINE__, hwq, mqtag, tag, cq_index);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hdr status: %s Tag out of range\n",
-                       __func__, __LINE__,
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
+                       hwq, mqtag, tag, cq_index);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hdr status: %s Tag out of range\n",
                        fnic_fcpio_status_to_str(hdr_status));
                return;
        }  else if ((tag == fnic->fnic_max_tag_id) && !(id & FNIC_TAG_DEV_RST)) {
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
-                       __func__, __LINE__, hwq, mqtag, tag, cq_index);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "%s: %d: hdr status: %s Tag out of range\n",
-                       __func__, __LINE__,
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x cq index: %d ",
+                       hwq, mqtag, tag, cq_index);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hdr status: %s Tag out of range\n",
                        fnic_fcpio_status_to_str(hdr_status));
                return;
        }
        if ((id & FNIC_TAG_ABORT) && (id & FNIC_TAG_DEV_RST)) {
                /* Abort and terminate completion of device reset req */
                /* REVISIT : Add asserts about various flags */
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                             "dev reset abts cmpl recd. id %x status %s\n",
-                             id, fnic_fcpio_status_to_str(hdr_status));
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x hst: %s Abt/term completion received\n",
+                       hwq, mqtag, tag,
+                       fnic_fcpio_status_to_str(hdr_status));
                fnic_priv(sc)->state = FNIC_IOREQ_ABTS_COMPLETE;
                fnic_priv(sc)->abts_status = hdr_status;
                fnic_priv(sc)->flags |= FNIC_DEV_RST_DONE;
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
        } else if (id & FNIC_TAG_ABORT) {
                /* Completion of abort cmd */
+               shost_printk(KERN_DEBUG, fnic->lport->host,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x Abort header status: %s\n",
+                       hwq, mqtag, tag,
+                       fnic_fcpio_status_to_str(hdr_status));
                switch (hdr_status) {
                case FCPIO_SUCCESS:
                        break;
                                        &term_stats->terminate_fw_timeouts);
                        break;
                case FCPIO_ITMF_REJECTED:
-                       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
+                       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
                                "abort reject recd. id %d\n",
                                (int)(id & FNIC_TAG_MASK));
                        break;
                if (!(fnic_priv(sc)->flags & (FNIC_IO_ABORTED | FNIC_IO_DONE)))
                        atomic64_inc(&misc_stats->no_icmnd_itmf_cmpls);
 
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "abts cmpl recd. id %d status %s\n",
                              (int)(id & FNIC_TAG_MASK),
                              fnic_fcpio_status_to_str(hdr_status));
                if (io_req->abts_done) {
                        complete(io_req->abts_done);
                        spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
+                       shost_printk(KERN_INFO, fnic->lport->host,
+                                       "hwq: %d mqtag: 0x%x tag: 0x%x Waking up abort thread\n",
+                                       hwq, mqtag, tag);
                } else {
-                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                                     "abts cmpl, completing IO\n");
+                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
+                               "hwq: %d mqtag: 0x%x tag: 0x%x hst: %s Completing IO\n",
+                               hwq, mqtag,
+                               tag, fnic_fcpio_status_to_str(hdr_status));
                        fnic_priv(sc)->io_req = NULL;
                        sc->result = (DID_ERROR << 16);
                        fnic->sw_copy_wq[hwq].io_req_table[tag] = NULL;
                }
        } else if (id & FNIC_TAG_DEV_RST) {
                /* Completion of device reset */
+               shost_printk(KERN_INFO, fnic->lport->host,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x DR hst: %s\n",
+                       hwq, mqtag,
+                       tag, fnic_fcpio_status_to_str(hdr_status));
                fnic_priv(sc)->lr_status = hdr_status;
                if (fnic_priv(sc)->state == FNIC_IOREQ_ABTS_PENDING) {
                        spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                                  sc->device->host->host_no, id, sc,
                                  jiffies_to_msecs(jiffies - start_time),
                                  desc, 0, fnic_flags_and_state(sc));
-                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                               "Terminate pending "
-                               "dev reset cmpl recd. id %d status %s\n",
-                               (int)(id & FNIC_TAG_MASK),
-                               fnic_fcpio_status_to_str(hdr_status));
+                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
+                               "hwq: %d mqtag: 0x%x tag: 0x%x hst: %s Terminate pending\n",
+                               hwq, mqtag,
+                               tag, fnic_fcpio_status_to_str(hdr_status));
                        return;
                }
                if (fnic_priv(sc)->flags & FNIC_DEV_RST_TIMED_OUT) {
                                  sc->device->host->host_no, id, sc,
                                  jiffies_to_msecs(jiffies - start_time),
                                  desc, 0, fnic_flags_and_state(sc));
-                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+                       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                "dev reset cmpl recd after time out. "
                                "id %d status %s\n",
                                (int)(id & FNIC_TAG_MASK),
                }
                fnic_priv(sc)->state = FNIC_IOREQ_CMD_COMPLETE;
                fnic_priv(sc)->flags |= FNIC_DEV_RST_DONE;
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                             "dev reset cmpl recd. id %d status %s\n",
-                             (int)(id & FNIC_TAG_MASK),
-                             fnic_fcpio_status_to_str(hdr_status));
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x hst: %s DR completion received\n",
+                       hwq, mqtag,
+                       tag, fnic_fcpio_status_to_str(hdr_status));
                if (io_req->dr_done)
                        complete(io_req->dr_done);
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
 
        } else {
                shost_printk(KERN_ERR, fnic->lport->host,
-                            "Unexpected itmf io state %s tag %x\n",
-                            fnic_ioreq_state_to_str(fnic_priv(sc)->state), id);
+                       "%s: Unexpected itmf io state: hwq: %d tag 0x%x %s\n",
+                       __func__, hwq, id, fnic_ioreq_state_to_str(fnic_priv(sc)->state));
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
        }
 
                break;
 
        default:
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "firmware completion type %d\n",
                              desc->hdr.type);
                break;
        io_req = fnic_priv(sc)->io_req;
        if (!io_req) {
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
-               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host,
-                       "fnic<%d>: %s: %d: hwq: %d mqtag: 0x%x tag: 0x%x flags: 0x%x No ioreq. Returning\n",
-                       fnic->fnic_num, __func__, __LINE__, hwq, mqtag, tag, fnic_priv(sc)->flags);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d mqtag: 0x%x tag: 0x%x flags: 0x%x No ioreq. Returning\n",
+                       hwq, mqtag, tag, fnic_priv(sc)->flags);
                return true;
        }
 
        mempool_free(io_req, fnic->io_req_pool);
 
        sc->result = DID_TRANSPORT_DISRUPTED << 16;
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                     "fnic_cleanup_io: tag:0x%x : sc:0x%p duration = %lu DID_TRANSPORT_DISRUPTED\n",
-                     tag, sc, jiffies - start_time);
+       FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+               "mqtag:0x%x tag: 0x%x sc:0x%p duration = %lu DID_TRANSPORT_DISRUPTED\n",
+               mqtag, tag, sc, (jiffies - start_time));
 
        if (atomic64_read(&fnic->io_cmpl_skip))
                atomic64_dec(&fnic->io_cmpl_skip);
 
 wq_copy_cleanup_scsi_cmd:
        sc->result = DID_NO_CONNECT << 16;
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, "wq_copy_cleanup_handler:"
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num, "wq_copy_cleanup_handler:"
                      " DID_NO_CONNECT\n");
 
        FNIC_TRACE(fnic_wq_copy_cleanup_handler,
        if (!vnic_wq_copy_desc_avail(wq)) {
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                atomic_dec(&fnic->in_flight);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                        "fnic_queue_abort_io_req: failure: no descriptors\n");
                atomic64_inc(&misc_stats->abts_cpwq_alloc_failures);
                return 1;
 
        if ((fnic_priv(sc)->flags & FNIC_DEVICE_RESET) &&
            !(fnic_priv(sc)->flags & FNIC_DEV_RST_ISSUED)) {
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                       "fnic_rport_exch_reset dev rst not pending sc 0x%p\n",
-                       sc);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d abt_tag: 0x%x flags: 0x%x Device reset is not pending\n",
+                       hwq, abt_tag, fnic_priv(sc)->flags);
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                return true;
        }
                atomic64_inc(&reset_stats->device_reset_terminates);
                abt_tag |= FNIC_TAG_DEV_RST;
        }
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "fnic_rport_exch_reset dev rst sc 0x%p\n", sc);
        BUG_ON(io_req->abts_done);
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "fnic_rport_reset_exch: Issuing abts\n");
 
        spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                 * lun reset
                 */
                spin_lock_irqsave(&fnic->wq_copy_lock[hwq], flags);
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d abt_tag: 0x%x flags: 0x%x Queuing abort failed\n",
+                       hwq, abt_tag, fnic_priv(sc)->flags);
                if (fnic_priv(sc)->state == FNIC_IOREQ_ABTS_PENDING)
                        fnic_priv(sc)->state = old_ioreq_state;
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
        };
 
        FNIC_SCSI_DBG(KERN_DEBUG,
-                     fnic->lport->host,
+                     fnic->lport->host, fnic->fnic_num,
                      "fnic_rport_exch_reset called portid 0x%06x\n",
                      port_id);
 
                return;
        }
        fnic = lport_priv(lport);
-       FNIC_SCSI_DBG(KERN_DEBUG,
-                     fnic->lport->host, "fnic_terminate_rport_io called"
-                     " wwpn 0x%llx, wwnn0x%llx, rport 0x%p, portid 0x%06x\n",
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
+                     "wwpn 0x%llx, wwnn0x%llx, rport 0x%p, portid 0x%06x\n",
                      rport->port_name, rport->node_name, rport,
                      rport->port_id);
 
        else
                atomic64_inc(&abts_stats->abort_issued_greater_than_60_sec);
 
-       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
-               "CBD Opcode: %02x Abort issued time: %lu msec\n", sc->cmnd[0], abt_issued_time);
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
+               "CDB Opcode: 0x%02x Abort issued time: %lu msec\n",
+               sc->cmnd[0], abt_issued_time);
        /*
         * Command is still pending, need to abort it
         * If the firmware completes the command after this point,
 
        if (!(fnic_priv(sc)->flags & (FNIC_IO_ABORTED | FNIC_IO_DONE))) {
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                       "Issuing Host reset due to out of order IO\n");
+           FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "Issuing host reset due to out of order IO\n");
 
                ret = FAILED;
                goto fnic_abort_cmd_end;
                  (u64)sc->cmnd[4] << 8 | sc->cmnd[5]),
                  fnic_flags_and_state(sc));
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "Returning from abort cmd type %x %s\n", task_req,
                      (ret == SUCCESS) ?
                      "SUCCESS" : "FAILED");
                free_wq_copy_descs(fnic, wq, hwq);
 
        if (!vnic_wq_copy_desc_avail(wq)) {
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                          "queue_dr_io_req failure - no descriptors\n");
                atomic64_inc(&misc_stats->devrst_cpwq_alloc_failures);
                ret = -EAGAIN;
         * Found IO that is still pending with firmware and
         * belongs to the LUN that we are resetting
         */
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "Found IO in %s on lun\n",
                      fnic_ioreq_state_to_str(fnic_priv(sc)->state));
 
        }
        if ((fnic_priv(sc)->flags & FNIC_DEVICE_RESET) &&
            (!(fnic_priv(sc)->flags & FNIC_DEV_RST_ISSUED))) {
-               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
-                             "%s dev rst not pending sc 0x%p\n", __func__,
-                             sc);
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                             "dev rst not pending sc 0x%p\n", sc);
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                return true;
        }
        BUG_ON(io_req->abts_done);
 
        if (fnic_priv(sc)->flags & FNIC_DEVICE_RESET) {
-               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
-                             "%s: dev rst sc 0x%p\n", __func__, sc);
+               FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                             "dev rst sc 0x%p\n", sc);
        }
 
        fnic_priv(sc)->abts_status = FCPIO_INVALID_CODE;
                        fnic_priv(sc)->state = old_ioreq_state;
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                iter_data->ret = FAILED;
+               FNIC_SCSI_DBG(KERN_ERR, fnic->lport->host, fnic->fnic_num,
+                       "hwq: %d abt_tag: 0x%lx Abort could not be queued\n",
+                       hwq, abt_tag);
                return false;
        } else {
                spin_lock_irqsave(&fnic->wq_copy_lock[hwq], flags);
                ret = 1;
 
 clean_pending_aborts_end:
-       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
-                       "%s: exit status: %d\n", __func__, ret);
+       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                       "exit status: %d\n", ret);
        return ret;
 }
 
        atomic64_inc(&reset_stats->device_resets);
 
        rport = starget_to_rport(scsi_target(sc->device));
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                     "Device reset called FCID 0x%x, LUN 0x%llx sc 0x%p\n",
-                     rport->port_id, sc->device->lun, sc);
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
+               "fcid: 0x%x lun: 0x%llx hwq: %d mqtag: 0x%x flags: 0x%x Device reset\n",
+               rport->port_id, sc->device->lun, hwq, mqtag,
+               fnic_priv(sc)->flags);
 
        if (lp->state != LPORT_ST_READY || !(lp->link_up))
                goto fnic_device_reset_end;
        fnic_priv(sc)->lr_status = FCPIO_INVALID_CODE;
        spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, "TAG %x\n", mqtag);
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num, "TAG %x\n", mqtag);
 
        /*
         * issue the device reset, if enqueue failed, clean up the ioreq
        io_req = fnic_priv(sc)->io_req;
        if (!io_req) {
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                "io_req is null mqtag 0x%x sc 0x%p\n", mqtag, sc);
                goto fnic_device_reset_end;
        }
         */
        if (status == FCPIO_INVALID_CODE) {
                atomic64_inc(&reset_stats->device_reset_timeouts);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "Device reset timed out\n");
                fnic_priv(sc)->flags |= FNIC_DEV_RST_TIMED_OUT;
                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
                                fnic_priv(sc)->state = FNIC_IOREQ_ABTS_PENDING;
                                io_req->abts_done = &tm_done;
                                spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
-                               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+                               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                                "Abort and terminate issued on Device reset mqtag 0x%x sc 0x%p\n",
                                mqtag, sc);
                                break;
        if (status != FCPIO_SUCCESS) {
                spin_lock_irqsave(&fnic->wq_copy_lock[hwq], flags);
                FNIC_SCSI_DBG(KERN_DEBUG,
-                             fnic->lport->host,
+                             fnic->lport->host, fnic->fnic_num,
                              "Device reset completed - failed\n");
                io_req = fnic_priv(sc)->io_req;
                goto fnic_device_reset_clean;
        if (fnic_clean_pending_aborts(fnic, sc, new_sc)) {
                spin_lock_irqsave(&fnic->wq_copy_lock[hwq], flags);
                io_req = fnic_priv(sc)->io_req;
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                              "Device reset failed"
                              " since could not abort all IOs\n");
                goto fnic_device_reset_clean;
                mutex_unlock(&fnic->sgreset_mutex);
        }
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "Returning from device reset %s\n",
                      (ret == SUCCESS) ?
                      "SUCCESS" : "FAILED");
        fnic = lport_priv(lp);
        reset_stats = &fnic->fnic_stats.reset_stats;
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                     "fnic_reset called\n");
+       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+                       "Issuing fnic reset\n");
 
        atomic64_inc(&reset_stats->fnic_resets);
 
         */
        ret = fc_lport_reset(lp);
 
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
-                     "Returning from fnic reset %s\n",
-                     (ret == 0) ?
-                     "SUCCESS" : "FAILED");
+       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+               "Returning from fnic reset with: %s\n",
+               (ret == 0) ? "SUCCESS" : "FAILED");
 
        if (ret == 0)
                atomic64_inc(&reset_stats->fnic_reset_completions);
                fnic->internal_reset_inprogress = true;
        } else {
                spin_unlock_irqrestore(&fnic->fnic_lock, flags);
-               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+               FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                        "host reset in progress skipping another host reset\n");
                return SUCCESS;
        }
 
        spin_lock_irqsave(&fnic->fnic_lock, flags);
        fnic->remove_wait = NULL;
-       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host,
+       FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, fnic->fnic_num,
                      "fnic_scsi_abort_io %s\n",
                      (fnic->state == FNIC_IN_ETH_MODE) ?
                      "SUCCESS" : "FAILED");
         * Found IO that is still pending with firmware and
         * belongs to the LUN that we are resetting
         */
-       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host,
-                     "Found IO in %s on lun\n",
-                     fnic_ioreq_state_to_str(fnic_priv(sc)->state));
+       FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, fnic->fnic_num,
+               "hwq: %d tag: 0x%x Found IO in state: %s on lun\n",
+               hwq, tag,
+               fnic_ioreq_state_to_str(fnic_priv(sc)->state));
        cmd_state = fnic_priv(sc)->state;
        spin_unlock_irqrestore(&fnic->wq_copy_lock[hwq], flags);
        if (cmd_state == FNIC_IOREQ_ABTS_PENDING)