]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
EDAC: Handle csrow/channel on csbased MCIs differently
authorBorislav Petkov <borislav.petkov@amd.com>
Thu, 13 Sep 2012 15:23:04 +0000 (17:23 +0200)
committerBorislav Petkov <borislav.petkov@amd.com>
Wed, 24 Oct 2012 14:55:31 +0000 (16:55 +0200)
The csrow and channel on csbased memory controllers get reported in the
top_layer and mid_layer arguments. If we rely on the dimm->csrow, we
get wrong csrows incremented in sysfs. For example, for an injection to
csrow 1 on MCT 1:

[ 5448.720258] EDAC MC1: 1 CE on mc#1csrow#1channel#1 (csrow:1 channel:1 page:0x827c43 offset:0xca0 grain:0 syndrome:0x1c6)

we get

[ 5448.720244] EDAC DEBUG: edac_mc_handle_error: rank csrows map: (3,0)
[ 5448.720248] EDAC DEBUG: edac_mc_handle_error: csrow/channel to increment: (3,0)

csrow 3, channel 0 to increment mc1/csrow3/ce_count sysfs counter.

Fix this by reading the csrow number directly.

Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
drivers/edac/edac_mc.c

index 39c75246c2aeb66fd38836f0e83f519f5f713df6..7b8ea79c78a78c68ace30afc8b4c31914fd53c29 100644 (file)
@@ -1182,6 +1182,12 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
        if (!enable_per_layer_report) {
                strcpy(label, "any memory");
        } else {
+
+               if (mci->csbased) {
+                       row  = top_layer;
+                       chan = mid_layer;
+               }
+
                edac_dbg(4, "csrow/channel to increment: (%d,%d)\n", row, chan);
                if (p == label)
                        strcpy(label, "unknown memory");