aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Dupuis <chad.dupuis@qlogic.com>2013-08-27 01:37:50 -0400
committerJames Bottomley <JBottomley@Parallels.com>2013-09-03 10:28:06 -0400
commit353d9449b74a8c528ae490dfa9139043627ed5fd (patch)
treeb8d926e327a0b17a0dba83867e0cc0a224075ff2
parent5a5c27b611a7e97c05e4317c5b90e68c2ff44ec8 (diff)
[SCSI] qla2xxx: Move queue depth ramp down message to i/o debug level.
Unless there is a need to observe them, the queue depth ramp up/down messages are a nuisance and may cause the system to become unresponsive so move it a non-default logging level. Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com> Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r--drivers/scsi/qla2xxx/qla_os.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index e1808b9b29b4..9f01bbbf3a26 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -1508,7 +1508,7 @@ qla2x00_host_ramp_down_queuedepth(scsi_qla_host_t *vha)
1508 if (sdev->queue_depth > shost->cmd_per_lun) { 1508 if (sdev->queue_depth > shost->cmd_per_lun) {
1509 if (sdev->queue_depth < ha->cfg_lun_q_depth) 1509 if (sdev->queue_depth < ha->cfg_lun_q_depth)
1510 continue; 1510 continue;
1511 ql_log(ql_log_warn, vp, 0x3031, 1511 ql_dbg(ql_dbg_io, vp, 0x3031,
1512 "%ld:%d:%d: Ramping down queue depth to %d", 1512 "%ld:%d:%d: Ramping down queue depth to %d",
1513 vp->host_no, sdev->id, sdev->lun, 1513 vp->host_no, sdev->id, sdev->lun,
1514 ha->cfg_lun_q_depth); 1514 ha->cfg_lun_q_depth);