aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Van Assche <bart.vanassche@sandisk.com>2015-07-09 10:22:38 -0400
committerJames Bottomley <JBottomley@Odin.com>2015-08-26 13:33:40 -0400
commitc3ff356d08275960b4a36471a81d5b2685a4074e (patch)
treee8353fcad95348fe8271c54afa84c91735657996
parent2d3a5d215e24d9bfb822ae82c6c2c5d333be076d (diff)
qla2xxx: Report both rsp_info and rsp_info_len
Let the debug statement in qlafx00_tm_iocb_entry() report both rsp_info and rsp_info_len instead of reporting rsp_info_len twice. Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com> Acked-by: Himanshu Madhani <himanshu.madhani@qlogic.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
-rw-r--r--drivers/scsi/qla2xxx/qla_mr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers/scsi/qla2xxx/qla_mr.c
index 6d190b4b82a0..878fd3d961f8 100644
--- a/drivers/scsi/qla2xxx/qla_mr.c
+++ b/drivers/scsi/qla2xxx/qla_mr.c
@@ -2528,12 +2528,12 @@ check_scsi_status:
2528 ql_dbg(ql_dbg_io, fcport->vha, 0x3058, 2528 ql_dbg(ql_dbg_io, fcport->vha, 0x3058,
2529 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu " 2529 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
2530 "tgt_id: 0x%x lscsi_status: 0x%x cdb=%10phN len=0x%x " 2530 "tgt_id: 0x%x lscsi_status: 0x%x cdb=%10phN len=0x%x "
2531 "rsp_info=0x%x resid=0x%x fw_resid=0x%x sense_len=0x%x, " 2531 "rsp_info=%p resid=0x%x fw_resid=0x%x sense_len=0x%x, "
2532 "par_sense_len=0x%x, rsp_info_len=0x%x\n", 2532 "par_sense_len=0x%x, rsp_info_len=0x%x\n",
2533 comp_status, scsi_status, res, vha->host_no, 2533 comp_status, scsi_status, res, vha->host_no,
2534 cp->device->id, cp->device->lun, fcport->tgt_id, 2534 cp->device->id, cp->device->lun, fcport->tgt_id,
2535 lscsi_status, cp->cmnd, scsi_bufflen(cp), 2535 lscsi_status, cp->cmnd, scsi_bufflen(cp),
2536 rsp_info_len, resid_len, fw_resid_len, sense_len, 2536 rsp_info, resid_len, fw_resid_len, sense_len,
2537 par_sense_len, rsp_info_len); 2537 par_sense_len, rsp_info_len);
2538 2538
2539 if (rsp->status_srb == NULL) 2539 if (rsp->status_srb == NULL)