i7core_edac: Fix a bug when printing error counts with RDIMMs

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab 2009-09-05 05:10:31 -03:00
parent c344436319
commit d88b85072f
1 changed files with 8 additions and 5 deletions

View File

@ -1054,13 +1054,15 @@ static ssize_t i7core_ce_regs_show(struct mem_ctl_info *mci, char *data)
count = sprintf(data, "data unavailable\n"); count = sprintf(data, "data unavailable\n");
return 0; return 0;
} }
if (!pvt->is_registered) if (!pvt->is_registered) {
count = sprintf(data, "all channels " count = sprintf(data, "all channels "
"UDIMM0: %lu UDIMM1: %lu UDIMM2: %lu\n", "UDIMM0: %lu UDIMM1: %lu UDIMM2: %lu\n",
pvt->udimm_ce_count[0], pvt->udimm_ce_count[0],
pvt->udimm_ce_count[1], pvt->udimm_ce_count[1],
pvt->udimm_ce_count[2]); pvt->udimm_ce_count[2]);
else data += count;
total += count;
} else {
for (i = 0; i < NUM_CHANS; i++) { for (i = 0; i < NUM_CHANS; i++) {
count = sprintf(data, "channel %d RDIMM0: %lu " count = sprintf(data, "channel %d RDIMM0: %lu "
"RDIMM1: %lu RDIMM2: %lu\n", "RDIMM1: %lu RDIMM2: %lu\n",
@ -1068,9 +1070,10 @@ static ssize_t i7core_ce_regs_show(struct mem_ctl_info *mci, char *data)
pvt->rdimm_ce_count[i][0], pvt->rdimm_ce_count[i][0],
pvt->rdimm_ce_count[i][1], pvt->rdimm_ce_count[i][1],
pvt->rdimm_ce_count[i][2]); pvt->rdimm_ce_count[i][2]);
} data += count;
data += count; total += count;
total += count; }
}
return total; return total;
} }