diff options
| author | Huang Ying <ying.huang@intel.com> | 2010-06-08 02:35:39 -0400 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2010-06-11 00:28:49 -0400 |
| commit | a2d7b0d4852536273b65d16fe179c65184fe5e2d (patch) | |
| tree | 96f15b3142981c75450a3c92a4616170e07adc5e | |
| parent | c6de9f08912311ddc1b3502b90e10fd449acd401 (diff) | |
x86, mce: Use HW_ERR in MCE handler
Use HW_ERR printk prefix in MCE handler. To make it more explicit that
this is hardware error instead of software error.
Signed-off-by: Huang Ying <ying.huang@intel.com>
LKML-Reference: <1275978939.3444.668.camel@yhuang-dev.sh.intel.com>
Reviewed-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
| -rw-r--r-- | arch/x86/kernel/cpu/mcheck/mce.c | 32 |
1 files changed, 10 insertions, 22 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c index 18cc42562250..094b228c8b06 100644 --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c | |||
| @@ -107,8 +107,8 @@ EXPORT_SYMBOL_GPL(x86_mce_decoder_chain); | |||
| 107 | static int default_decode_mce(struct notifier_block *nb, unsigned long val, | 107 | static int default_decode_mce(struct notifier_block *nb, unsigned long val, |
| 108 | void *data) | 108 | void *data) |
| 109 | { | 109 | { |
| 110 | pr_emerg("No human readable MCE decoding support on this CPU type.\n"); | 110 | pr_emerg(HW_ERR "No human readable MCE decoding support on this CPU type.\n"); |
| 111 | pr_emerg("Run the message through 'mcelog --ascii' to decode.\n"); | 111 | pr_emerg(HW_ERR "Run the message through 'mcelog --ascii' to decode.\n"); |
| 112 | 112 | ||
| 113 | return NOTIFY_STOP; | 113 | return NOTIFY_STOP; |
| 114 | } | 114 | } |
| @@ -211,11 +211,11 @@ void mce_log(struct mce *mce) | |||
| 211 | 211 | ||
| 212 | static void print_mce(struct mce *m) | 212 | static void print_mce(struct mce *m) |
| 213 | { | 213 | { |
| 214 | pr_emerg("CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n", | 214 | pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n", |
| 215 | m->extcpu, m->mcgstatus, m->bank, m->status); | 215 | m->extcpu, m->mcgstatus, m->bank, m->status); |
| 216 | 216 | ||
| 217 | if (m->ip) { | 217 | if (m->ip) { |
| 218 | pr_emerg("RIP%s %02x:<%016Lx> ", | 218 | pr_emerg(HW_ERR "RIP%s %02x:<%016Lx> ", |
| 219 | !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "", | 219 | !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "", |
| 220 | m->cs, m->ip); | 220 | m->cs, m->ip); |
| 221 | 221 | ||
| @@ -224,14 +224,14 @@ static void print_mce(struct mce *m) | |||
| 224 | pr_cont("\n"); | 224 | pr_cont("\n"); |
| 225 | } | 225 | } |
| 226 | 226 | ||
| 227 | pr_emerg("TSC %llx ", m->tsc); | 227 | pr_emerg(HW_ERR "TSC %llx ", m->tsc); |
| 228 | if (m->addr) | 228 | if (m->addr) |
| 229 | pr_cont("ADDR %llx ", m->addr); | 229 | pr_cont("ADDR %llx ", m->addr); |
| 230 | if (m->misc) | 230 | if (m->misc) |
| 231 | pr_cont("MISC %llx ", m->misc); | 231 | pr_cont("MISC %llx ", m->misc); |
| 232 | 232 | ||
| 233 | pr_cont("\n"); | 233 | pr_cont("\n"); |
| 234 | pr_emerg("PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n", | 234 | pr_emerg(HW_ERR "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n", |
| 235 | m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid); | 235 | m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid); |
| 236 | 236 | ||
| 237 | /* | 237 | /* |
| @@ -241,16 +241,6 @@ static void print_mce(struct mce *m) | |||
| 241 | atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m); | 241 | atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m); |
| 242 | } | 242 | } |
| 243 | 243 | ||
| 244 | static void print_mce_head(void) | ||
| 245 | { | ||
| 246 | pr_emerg("\nHARDWARE ERROR\n"); | ||
| 247 | } | ||
| 248 | |||
| 249 | static void print_mce_tail(void) | ||
| 250 | { | ||
| 251 | pr_emerg("This is not a software problem!\n"); | ||
| 252 | } | ||
| 253 | |||
| 254 | #define PANIC_TIMEOUT 5 /* 5 seconds */ | 244 | #define PANIC_TIMEOUT 5 /* 5 seconds */ |
| 255 | 245 | ||
| 256 | static atomic_t mce_paniced; | 246 | static atomic_t mce_paniced; |
| @@ -291,7 +281,6 @@ static void mce_panic(char *msg, struct mce *final, char *exp) | |||
| 291 | if (atomic_inc_return(&mce_fake_paniced) > 1) | 281 | if (atomic_inc_return(&mce_fake_paniced) > 1) |
| 292 | return; | 282 | return; |
| 293 | } | 283 | } |
| 294 | print_mce_head(); | ||
| 295 | /* First print corrected ones that are still unlogged */ | 284 | /* First print corrected ones that are still unlogged */ |
| 296 | for (i = 0; i < MCE_LOG_LEN; i++) { | 285 | for (i = 0; i < MCE_LOG_LEN; i++) { |
| 297 | struct mce *m = &mcelog.entry[i]; | 286 | struct mce *m = &mcelog.entry[i]; |
| @@ -322,16 +311,15 @@ static void mce_panic(char *msg, struct mce *final, char *exp) | |||
| 322 | apei_err = apei_write_mce(final); | 311 | apei_err = apei_write_mce(final); |
| 323 | } | 312 | } |
| 324 | if (cpu_missing) | 313 | if (cpu_missing) |
| 325 | printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n"); | 314 | pr_emerg(HW_ERR "Some CPUs didn't answer in synchronization\n"); |
| 326 | print_mce_tail(); | ||
| 327 | if (exp) | 315 | if (exp) |
| 328 | printk(KERN_EMERG "Machine check: %s\n", exp); | 316 | pr_emerg(HW_ERR "Machine check: %s\n", exp); |
| 329 | if (!fake_panic) { | 317 | if (!fake_panic) { |
| 330 | if (panic_timeout == 0) | 318 | if (panic_timeout == 0) |
| 331 | panic_timeout = mce_panic_timeout; | 319 | panic_timeout = mce_panic_timeout; |
| 332 | panic(msg); | 320 | panic(msg); |
| 333 | } else | 321 | } else |
| 334 | printk(KERN_EMERG "Fake kernel panic: %s\n", msg); | 322 | pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg); |
| 335 | } | 323 | } |
| 336 | 324 | ||
| 337 | /* Support code for software error injection */ | 325 | /* Support code for software error injection */ |
| @@ -1220,7 +1208,7 @@ int mce_notify_irq(void) | |||
| 1220 | schedule_work(&mce_trigger_work); | 1208 | schedule_work(&mce_trigger_work); |
| 1221 | 1209 | ||
| 1222 | if (__ratelimit(&ratelimit)) | 1210 | if (__ratelimit(&ratelimit)) |
| 1223 | printk(KERN_INFO "Machine check events logged\n"); | 1211 | pr_info(HW_ERR "Machine check events logged\n"); |
| 1224 | 1212 | ||
| 1225 | return 1; | 1213 | return 1; |
| 1226 | } | 1214 | } |
