diff options
author | Armen Baloyan <armen.baloyan@qlogic.com> | 2014-04-11 20:54:25 (GMT) |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-05-19 11:31:02 (GMT) |
commit | 9929c478123d3ce6020c5b771c8e8524ebb636fb (patch) | |
tree | 1dbb72a1bf4725e35a18fea59335ffe4e5ad2bb0 | |
parent | bd21eaf92b249c9925b7fc2123b81167ff191270 (diff) | |
download | linux-9929c478123d3ce6020c5b771c8e8524ebb636fb.tar.xz |
qla2xxx: Decrease pci access for response queue processing for ISPFX00.
Signed-off-by: Armen Baloyan <armen.baloyan@qlogic.com>
Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r-- | drivers/scsi/qla2xxx/qla_mr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers/scsi/qla2xxx/qla_mr.c index 1801e5f..eb9be2e 100644 --- a/drivers/scsi/qla2xxx/qla_mr.c +++ b/drivers/scsi/qla2xxx/qla_mr.c @@ -2676,7 +2676,7 @@ qlafx00_process_response_queue(struct scsi_qla_host *vha, uint16_t lreq_q_out = 0; lreq_q_in = RD_REG_DWORD(rsp->rsp_q_in); - lreq_q_out = RD_REG_DWORD(rsp->rsp_q_out); + lreq_q_out = rsp->ring_index; while (lreq_q_in != lreq_q_out) { lptr = rsp->ring_ptr; |