Skip to content

Commit 09ecc18

Browse files
paulmenzelmartinkpetersen
authored andcommitted
scsi: mpt3sas: Add details to EEDPTagMode error message
Linux 5.15 logs the error below mpt3sas_cm0: overriding NVDATA EEDPTagMode setting on a Dell PowerEdge T440 with the card below. 5e:00.0 Serial Attached SCSI controller [0107]: Broadcom / LSI SAS3008 PCI-Express Fusion-MPT SAS-3 [1000:0097] (rev 02) It’s not clear to a user what this error is about. As a first step to improve this, add the values to the error message. Signed-off-by: Paul Menzel <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Martin K. Petersen <[email protected]>
1 parent c13b10a commit 09ecc18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/mpt3sas/mpt3sas_base.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5627,7 +5627,7 @@ _base_static_config_pages(struct MPT3SAS_ADAPTER *ioc)
56275627
if (rc)
56285628
return rc;
56295629
if (!ioc->is_gen35_ioc && ioc->manu_pg11.EEDPTagMode == 0) {
5630-
pr_err("%s: overriding NVDATA EEDPTagMode setting\n",
5630+
pr_err("%s: overriding NVDATA EEDPTagMode setting from 0 to 1\n",
56315631
ioc->name);
56325632
ioc->manu_pg11.EEDPTagMode &= ~0x3;
56335633
ioc->manu_pg11.EEDPTagMode |= 0x1;

0 commit comments

Comments
 (0)