MCE, AMD: Correct some MC0 error types

Use "System Read Data Error" as a more general name for MC0 bus errors
on F15h and update some error definitions.

Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Reviewed-by: Andreas Herrmann <andreas.herrmann3@amd.com>
This commit is contained in:
Borislav Petkov 2011-11-15 17:10:58 +01:00 committed by Borislav Petkov
parent 36c46f31df
commit 344f0a0631

View file

@ -255,10 +255,9 @@ static bool f15h_dc_mce(u16 ec, u8 xec)
} else if (BUS_ERROR(ec)) {
if (!xec)
pr_cont("during system linefill.\n");
pr_cont("System Read Data Error.\n");
else
pr_cont(" Internal %s condition.\n",
((xec == 1) ? "livelock" : "deadlock"));
pr_cont(" Internal error condition type %d.\n", xec);
} else
ret = false;