Skip to content

Commit

Permalink
Clarify AMD error message
Browse files Browse the repository at this point in the history
The AMD supported message is confusing for some people.  Add a bit more
detail and be clear that mcelog does not support the processor.

Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
  • Loading branch information
prarit authored and Andi Kleen committed Jan 27, 2015
1 parent 9823b63 commit 0fc9f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcelog.c
Expand Up @@ -521,7 +521,7 @@ int is_cpu_supported(void)
if (family == 15) {
cputype = CPU_K8;
} else if (family >= 16) {
SYSERRprintf("AMD Processor family %d: Please use the edac_mce_amd module instead.\n", family);
SYSERRprintf("ERROR: AMD Processor family %d: mcelog does not support this processor. Please use the edac_mce_amd module instead.\n", family);
return 0;
}
} else if (!strcmp(vendor,"GenuineIntel"))
Expand Down

0 comments on commit 0fc9f70

Please sign in to comment.