Commit 71bef502 authored by Quinn Tran's avatar Quinn Tran Committed by Martin K. Petersen

scsi: qla2xxx: edif: Increment command and completion counts

Increment the command and the completion counts.

Link: https://lore.kernel.org/r/20210624052606.21613-11-njavali@marvell.comSigned-off-by: default avatarQuinn Tran <qutran@marvell.com>
Signed-off-by: default avatarNilesh Javali <njavali@marvell.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 44d01857
...@@ -2926,6 +2926,7 @@ qla28xx_start_scsi_edif(srb_t *sp) ...@@ -2926,6 +2926,7 @@ qla28xx_start_scsi_edif(srb_t *sp)
req->ring_ptr++; req->ring_ptr++;
} }
sp->qpair->cmd_cnt++;
/* Set chip new ring index. */ /* Set chip new ring index. */
wrt_reg_dword(req->req_q_in, req->ring_index); wrt_reg_dword(req->req_q_in, req->ring_index);
......
...@@ -3192,10 +3192,9 @@ qla2x00_status_entry(scsi_qla_host_t *vha, struct rsp_que *rsp, void *pkt) ...@@ -3192,10 +3192,9 @@ qla2x00_status_entry(scsi_qla_host_t *vha, struct rsp_que *rsp, void *pkt)
return; return;
} }
sp->qpair->cmd_completion_cnt++;
/* Fast path completion. */ /* Fast path completion. */
qla_chk_edif_rx_sa_delete_pending(vha, sp, sts24); qla_chk_edif_rx_sa_delete_pending(vha, sp, sts24);
sp->qpair->cmd_completion_cnt++;
if (comp_status == CS_COMPLETE && scsi_status == 0) { if (comp_status == CS_COMPLETE && scsi_status == 0) {
qla2x00_process_completed_request(vha, req, handle); qla2x00_process_completed_request(vha, req, handle);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment