Skip to content

Commit 10fa9a4

Browse files
qzhuo2bp3tk0v
authored andcommitted
EDAC/igen6: Reduce log level to debug for absent memory controllers
The current KERN_WARNING level message for detecting absent memory controllers is overly dramatic. The BIOS likely had valid reasons to disable the memory controller (e.g. it isn't connected to any DIMM slots on the motherboard for this system). So there's nothing actually wrong that needs to be fixed. Reduce the log level to KERN_DEBUG to eliminate the false warning. Suggested-by: Tony Luck <[email protected]> Signed-off-by: Qiuxu Zhuo <[email protected]> Signed-off-by: Tony Luck <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 1de70ef commit 10fa9a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/edac/igen6_edac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ static int igen6_register_mcis(struct pci_dev *pdev, u64 mchbar)
13511351
}
13521352

13531353
if (lmc < res_cfg->num_imc) {
1354-
igen6_printk(KERN_WARNING, "Expected %d mcs, but only %d detected.",
1354+
igen6_printk(KERN_DEBUG, "Expected %d mcs, but only %d detected.",
13551355
res_cfg->num_imc, lmc);
13561356
res_cfg->num_imc = lmc;
13571357
}

0 commit comments

Comments
 (0)