mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
11 lines
184 B
C
11 lines
184 B
C
|
#include <asm/mce.h>
|
||
|
|
||
|
enum severity_level {
|
||
|
MCE_NO_SEVERITY,
|
||
|
MCE_SOME_SEVERITY,
|
||
|
MCE_UC_SEVERITY,
|
||
|
MCE_PANIC_SEVERITY,
|
||
|
};
|
||
|
|
||
|
int mce_severity(struct mce *a, int tolerant, char **msg);
|