diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2012-09-13 18:53:58 +0200 |
---|---|---|
committer | Borislav Petkov <bp@alien8.de> | 2012-11-28 11:54:40 +0100 |
commit | 16a528ee3975c860dc93fbfc718fe9aa25ed92bc (patch) | |
tree | ea0d20d3544df6dfe2977634d1a4cc837f80b964 /include/linux/edac.h | |
parent | 921a689965c26ae6fde12ebaadb4183cbfdb01fb (diff) | |
download | talos-op-linux-16a528ee3975c860dc93fbfc718fe9aa25ed92bc.tar.gz talos-op-linux-16a528ee3975c860dc93fbfc718fe9aa25ed92bc.zip |
EDAC: Fix csrow size reported in sysfs
On csrow-based memory controllers, we combine the csrow size from both
channels and there's no need to do that again in csrow_size_show which
leads to double the size of a csrow.
Fix it.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Diffstat (limited to 'include/linux/edac.h')
-rw-r--r-- | include/linux/edac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/edac.h b/include/linux/edac.h index 07bda01bf20a..1b8c02b36f76 100644 --- a/include/linux/edac.h +++ b/include/linux/edac.h @@ -533,6 +533,7 @@ struct csrow_info { u32 ue_count; /* Uncorrectable Errors for this csrow */ u32 ce_count; /* Correctable Errors for this csrow */ + u32 nr_pages; /* combined pages count of all channels */ struct mem_ctl_info *mci; /* the parent */ |