forked from luck/tmp_suning_uos_patched
edac, mce: correct corenum reporting
Fix core number reporting with NB MCEs. Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
This commit is contained in:
parent
f40542532e
commit
35d8069234
|
@ -310,10 +310,9 @@ void amd_decode_nb_mce(int node_id, struct err_regs *regs, int handle_errors)
|
||||||
if (regs->nbsh & K8_NBSH_ERR_CPU_VAL)
|
if (regs->nbsh & K8_NBSH_ERR_CPU_VAL)
|
||||||
pr_cont(", core: %u\n", (u8)(regs->nbsh & 0xf));
|
pr_cont(", core: %u\n", (u8)(regs->nbsh & 0xf));
|
||||||
} else {
|
} else {
|
||||||
pr_cont(", core: %d\n", ilog2((regs->nbsh & 0xf)));
|
pr_cont(", core: %d\n", fls((regs->nbsh & 0xf) - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pr_emerg("%s.\n", EXT_ERR_MSG(xec));
|
pr_emerg("%s.\n", EXT_ERR_MSG(xec));
|
||||||
|
|
||||||
if (BUS_ERROR(ec) && nb_bus_decoder)
|
if (BUS_ERROR(ec) && nb_bus_decoder)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user