bnx2fc: replace printk() with BNX2FC_IO_DBG()
The "fcp_rsp_code = %d" message isn't an error, it's meant to be informative only. This patch prevents a flood of such messages in some situations. Signed-off-by: Maurizio Lombardi <mlombard@redhat.com> Tested-by: Laurence Oberman <loberman@redhat.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Acked-by: Chad Dupuis <chad.dupuis@qlogic.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
ad2bf16543
commit
8a30a3c7e6
|
@ -1758,7 +1758,7 @@ static void bnx2fc_parse_fcp_rsp(struct bnx2fc_cmd *io_req,
|
|||
if ((fcp_rsp_len == 4) || (fcp_rsp_len == 8)) {
|
||||
/* Only for task management function */
|
||||
io_req->fcp_rsp_code = rq_data[3];
|
||||
printk(KERN_ERR PFX "fcp_rsp_code = %d\n",
|
||||
BNX2FC_IO_DBG(io_req, "fcp_rsp_code = %d\n",
|
||||
io_req->fcp_rsp_code);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue