Skip to content

Commit b5a3084

Browse files
Saurav Kashyapmartinkpetersen
authored andcommitted
scsi: qla2xxx: Change debug message during driver unload
Upon driver unload, purge_mbox flag is set and the heartbeat monitor thread detects this flag and does not send the mailbox command down to FW with a debug message "Error detected: purge[1] eeh[0] cmd=0x0, Exiting". This being not a real error, change the debug message. Cc: [email protected] Signed-off-by: Saurav Kashyap <[email protected]> Signed-off-by: Nilesh Javali <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Himanshu Madhani <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent 82f522a commit b5a3084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/qla2xxx/qla_mbx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp)
194194
if (ha->flags.purge_mbox || chip_reset != ha->chip_reset ||
195195
ha->flags.eeh_busy) {
196196
ql_log(ql_log_warn, vha, 0xd035,
197-
"Error detected: purge[%d] eeh[%d] cmd=0x%x, Exiting.\n",
197+
"Purge mbox: purge[%d] eeh[%d] cmd=0x%x, Exiting.\n",
198198
ha->flags.purge_mbox, ha->flags.eeh_busy, mcp->mb[0]);
199199
rval = QLA_ABORTED;
200200
goto premature_exit;

0 commit comments

Comments
 (0)