Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 359980
b: refs/heads/master
c: 8dd93d4
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Feb 21, 2013
1 parent 9877f78 commit 2b93dfa
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e7e248304c8ccf02b89e04c3b3b66006b993b5a7
refs/heads/master: 8dd93d450bff251575c56b8f058393124e1f00fb
16 changes: 16 additions & 0 deletions trunk/include/linux/edac.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,24 @@ enum hw_event_mc_err_type {
HW_EVENT_ERR_CORRECTED,
HW_EVENT_ERR_UNCORRECTED,
HW_EVENT_ERR_FATAL,
HW_EVENT_ERR_INFO,
};

static inline char *mc_event_error_type(const unsigned int err_type)
{
switch (err_type) {
case HW_EVENT_ERR_CORRECTED:
return "Corrected";
case HW_EVENT_ERR_UNCORRECTED:
return "Uncorrected";
case HW_EVENT_ERR_FATAL:
return "Fatal";
default:
case HW_EVENT_ERR_INFO:
return "Info";
}
}

/**
* enum mem_type - memory types. For a more detailed reference, please see
* http://en.wikipedia.org/wiki/DRAM
Expand Down
4 changes: 1 addition & 3 deletions trunk/include/ras/ras_event.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ TRACE_EVENT(mc_event,

TP_printk("%d %s error%s:%s%s on %s (mc:%d location:%d:%d:%d address:0x%08lx grain:%d syndrome:0x%08lx%s%s)",
__entry->error_count,
(__entry->error_type == HW_EVENT_ERR_CORRECTED) ? "Corrected" :
((__entry->error_type == HW_EVENT_ERR_FATAL) ?
"Fatal" : "Uncorrected"),
mc_event_error_type(__entry->error_type),
__entry->error_count > 1 ? "s" : "",
((char *)__get_str(msg))[0] ? " " : "",
__get_str(msg),
Expand Down

0 comments on commit 2b93dfa

Please sign in to comment.