Skip to content

Commit 26474cd

Browse files
Arun Easigregkh
authored andcommitted
scsi: qla2xxx: Fix MPI reset needed message
commit 7a6cdbd upstream. When printing the message: "MPI Heartbeat stop. MPI reset is not needed.." ..the wrong register was checked leading to always printing that MPI reset is not needed, even when it is needed. Fix the MPI reset message. Link: https://lore.kernel.org/r/20200929102152.32278-4-njavali@marvell.com Fixes: cbb01c2 ("scsi: qla2xxx: Fix MPI failure AEN (8200) handling") Cc: stable@vger.kernel.org Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Signed-off-by: Arun Easi <aeasi@marvell.com> Signed-off-by: Nilesh Javali <njavali@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent f242539 commit 26474cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/scsi/qla2xxx/qla_isr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ qla27xx_handle_8200_aen(scsi_qla_host_t *vha, uint16_t *mb)
767767
ql_log(ql_log_warn, vha, 0x02f0,
768768
"MPI Heartbeat stop. MPI reset is%s needed. "
769769
"MB0[%xh] MB1[%xh] MB2[%xh] MB3[%xh]\n",
770-
mb[0] & BIT_8 ? "" : " not",
770+
mb[1] & BIT_8 ? "" : " not",
771771
mb[0], mb[1], mb[2], mb[3]);
772772

773773
if ((mb[1] & BIT_8) == 0)

0 commit comments

Comments
 (0)