diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-02-19 19:26:22 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-02-21 12:16:27 -0500 |
commit | 8dd93d450bff251575c56b8f058393124e1f00fb (patch) | |
tree | bee1cae0a29936d2897a5d84afdc20e524b1022b /include/linux/edac.h | |
parent | e7e248304c8ccf02b89e04c3b3b66006b993b5a7 (diff) |
edac: add support for error type "Info"
The CPER spec defines a forth type of error: informational
logs. Add support for it at the edac API and at the
trace event interface.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/linux/edac.h')
-rw-r--r-- | include/linux/edac.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/edac.h b/include/linux/edac.h index 096b7fcdf484..4fd4999ccb5b 100644 --- a/include/linux/edac.h +++ b/include/linux/edac.h | |||
@@ -109,8 +109,24 @@ enum hw_event_mc_err_type { | |||
109 | HW_EVENT_ERR_CORRECTED, | 109 | HW_EVENT_ERR_CORRECTED, |
110 | HW_EVENT_ERR_UNCORRECTED, | 110 | HW_EVENT_ERR_UNCORRECTED, |
111 | HW_EVENT_ERR_FATAL, | 111 | HW_EVENT_ERR_FATAL, |
112 | HW_EVENT_ERR_INFO, | ||
112 | }; | 113 | }; |
113 | 114 | ||
115 | static inline char *mc_event_error_type(const unsigned int err_type) | ||
116 | { | ||
117 | switch (err_type) { | ||
118 | case HW_EVENT_ERR_CORRECTED: | ||
119 | return "Corrected"; | ||
120 | case HW_EVENT_ERR_UNCORRECTED: | ||
121 | return "Uncorrected"; | ||
122 | case HW_EVENT_ERR_FATAL: | ||
123 | return "Fatal"; | ||
124 | default: | ||
125 | case HW_EVENT_ERR_INFO: | ||
126 | return "Info"; | ||
127 | } | ||
128 | } | ||
129 | |||
114 | /** | 130 | /** |
115 | * enum mem_type - memory types. For a more detailed reference, please see | 131 | * enum mem_type - memory types. For a more detailed reference, please see |
116 | * http://en.wikipedia.org/wiki/DRAM | 132 | * http://en.wikipedia.org/wiki/DRAM |