diff options
author | Brian King <[email protected]> | 2016-09-16 16:51:37 -0500 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2016-09-19 11:58:26 -0400 |
commit | 87adbe08b644cd4dfa078ec1a09be7d2b24ce97d (patch) | |
tree | 5ec1cad5188e238879c9609c8641ff72901fb92d | |
parent | 7b3871fd17a2092b21e44d614706bcb495389559 (diff) |
scsi: ipr: Remove redundant messages at adapter init time
Whenever multiple HRRQs are enabled, which is the default setting now,
we end up seeing the following message logged prior to initialization of
each HRRQ:
Starting IOA initialization sequence
This results in 16 of these messages on most adapters, which serves
little purpose. Change to just log this once.
Signed-off-by: Brian King <[email protected]>
Reviewed-by: Gabriel Krisman Bertazi <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/ipr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index 762627c848bd..1b21c6331c56 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c @@ -8049,7 +8049,8 @@ static int ipr_ioafp_identify_hrrq(struct ipr_cmnd *ipr_cmd) ENTER; ipr_cmd->job_step = ipr_ioafp_std_inquiry; - dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n"); + if (ioa_cfg->identify_hrrq_index == 0) + dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n"); if (ioa_cfg->identify_hrrq_index < ioa_cfg->hrrq_num) { hrrq = &ioa_cfg->hrrq[ioa_cfg->identify_hrrq_index]; |