scsi: qla2xxx: Remove unneeded message and minor cleanup for FC-NVMe
authorhimanshu.madhani@cavium.com <himanshu.madhani@cavium.com>
Wed, 21 Mar 2018 06:09:30 +0000 (23:09 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 21 Mar 2018 22:38:54 +0000 (18:38 -0400)
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla2xxx/qla_nvme.c

index 7a29242..91f8b3c 100644 (file)
@@ -113,8 +113,6 @@ static int qla_nvme_alloc_queue(struct nvme_fc_local_port *lport,
                return 0;
        }
 
-       ql_log(ql_log_warn, vha, 0xffff,
-           "allocating q for idx=%x w/o cpu mask\n", qidx);
        qpair = qla2xxx_create_qpair(vha, 5, vha->vp_idx, true);
        if (qpair == NULL) {
                ql_log(ql_log_warn, vha, 0x2122,
@@ -313,7 +311,6 @@ static int qla2x00_start_nvme_mq(srb_t *sp)
        uint16_t        avail_dsds;
        uint32_t        *cur_dsd;
        struct req_que *req = NULL;
-       struct rsp_que *rsp = NULL;
        struct scsi_qla_host *vha = sp->fcport->vha;
        struct qla_hw_data *ha = vha->hw;
        struct qla_qpair *qpair = sp->qpair;
@@ -322,15 +319,13 @@ static int qla2x00_start_nvme_mq(srb_t *sp)
        struct nvmefc_fcp_req *fd = nvme->u.nvme.desc;
        uint32_t        rval = QLA_SUCCESS;
 
+       /* Setup qpair pointers */
+       req = qpair->req;
        tot_dsds = fd->sg_cnt;
 
        /* Acquire qpair specific lock */
        spin_lock_irqsave(&qpair->qp_lock, flags);
 
-       /* Setup qpair pointers */
-       req = qpair->req;
-       rsp = qpair->rsp;
-
        /* Check for room in outstanding command list. */
        handle = req->current_outstanding_cmd;
        for (index = 1; index < req->num_outstanding_cmds; index++) {
@@ -365,7 +360,7 @@ static int qla2x00_start_nvme_mq(srb_t *sp)
                struct nvme_fc_cmd_iu *cmd = fd->cmdaddr;
                if (cmd->sqe.common.opcode == nvme_admin_async_event) {
                        nvme->u.nvme.aen_op = 1;
-                       atomic_inc(&vha->hw->nvme_active_aen_cnt);
+                       atomic_inc(&ha->nvme_active_aen_cnt);
                }
        }