diff options
author | Keith Mannthey <kmannth@us.ibm.com> | 2009-09-18 14:35:23 +0200 |
---|---|---|
committer | Borislav Petkov <borislav.petkov@amd.com> | 2009-10-07 16:49:58 +0200 |
commit | 2cff18c22cfaa88216a5d8c62ea64d1fb575c145 (patch) | |
tree | 4b03320e87feb28be01893b16e62f9cb6032b2c7 /drivers/edac | |
parent | 8edc5445895dbcf050d6e8ac5488f70a3937753a (diff) | |
download | linux-2cff18c22cfaa88216a5d8c62ea64d1fb575c145.tar.gz linux-2cff18c22cfaa88216a5d8c62ea64d1fb575c145.tar.bz2 linux-2cff18c22cfaa88216a5d8c62ea64d1fb575c145.zip |
amd64_edac: simple fix to allow reporting of CECC errors
This allows the errors to be further decoded and mapped to csrows.
Tested with ECC debug dimms and an Rev F cpu based system.
Signed-off-by: Keith Mannthey <kmannth@us.ibm.com>
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/amd64_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index 2c869d1fe334..ecc86c300e2b 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c @@ -1190,7 +1190,7 @@ static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci, * different from the node that detected the error. */ src_mci = find_mc_by_sys_addr(mci, SystemAddress); - if (src_mci) { + if (!src_mci) { amd64_mc_printk(mci, KERN_ERR, "failed to map error address 0x%lx to a node\n", (unsigned long)SystemAddress); |