forked from luck/tmp_suning_uos_patched
EDAC: Remove useless assignment of error type
The tracepoint decodes the error type later anyway so remove a useless assignment to the temporary p which gets overwritten later anyway. Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
This commit is contained in:
parent
37929874d4
commit
4da1b7bfe7
|
@ -1093,10 +1093,6 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < mci->n_layers; i++) {
|
for (i = 0; i < mci->n_layers; i++) {
|
||||||
if (pos[i] >= (int)mci->layers[i].size) {
|
if (pos[i] >= (int)mci->layers[i].size) {
|
||||||
if (type == HW_EVENT_ERR_CORRECTED)
|
|
||||||
p = "CE";
|
|
||||||
else
|
|
||||||
p = "UE";
|
|
||||||
|
|
||||||
edac_mc_printk(mci, KERN_ERR,
|
edac_mc_printk(mci, KERN_ERR,
|
||||||
"INTERNAL ERROR: %s value is out of range (%d >= %d)\n",
|
"INTERNAL ERROR: %s value is out of range (%d >= %d)\n",
|
||||||
|
@ -1128,6 +1124,7 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
|
||||||
grain = 0;
|
grain = 0;
|
||||||
p = label;
|
p = label;
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
|
|
||||||
for (i = 0; i < mci->tot_dimms; i++) {
|
for (i = 0; i < mci->tot_dimms; i++) {
|
||||||
struct dimm_info *dimm = mci->dimms[i];
|
struct dimm_info *dimm = mci->dimms[i];
|
||||||
|
|
||||||
|
@ -1195,6 +1192,7 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
|
||||||
|
|
||||||
/* Fill the RAM location data */
|
/* Fill the RAM location data */
|
||||||
p = location;
|
p = location;
|
||||||
|
|
||||||
for (i = 0; i < mci->n_layers; i++) {
|
for (i = 0; i < mci->n_layers; i++) {
|
||||||
if (pos[i] < 0)
|
if (pos[i] < 0)
|
||||||
continue;
|
continue;
|
||||||
|
@ -1207,7 +1205,6 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
|
||||||
*(p - 1) = '\0';
|
*(p - 1) = '\0';
|
||||||
|
|
||||||
/* Report the error via the trace interface */
|
/* Report the error via the trace interface */
|
||||||
|
|
||||||
grain_bits = fls_long(grain) + 1;
|
grain_bits = fls_long(grain) + 1;
|
||||||
trace_mc_event(type, msg, label, error_count,
|
trace_mc_event(type, msg, label, error_count,
|
||||||
mci->mc_idx, top_layer, mid_layer, low_layer,
|
mci->mc_idx, top_layer, mid_layer, low_layer,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user