1 #include <linux/device.h>
16 /* One object for each MCE bank, shared by all CPUs */
18 u64 ctl
; /* subevents to enable */
19 unsigned char init
; /* initialise bank? */
20 struct device_attribute attr
; /* device attribute */
21 char attrname
[ATTR_LEN
]; /* attribute name */
24 int mce_severity(struct mce
*a
, int tolerant
, char **msg
);
25 struct dentry
*mce_get_debugfs_dir(void);
27 extern struct mce_bank
*mce_banks
;
29 #ifdef CONFIG_X86_MCE_INTEL
30 unsigned long mce_intel_adjust_timer(unsigned long interval
);
31 void mce_intel_cmci_poll(void);
32 void mce_intel_hcpu_update(unsigned long cpu
);
34 # define mce_intel_adjust_timer mce_adjust_timer_default
35 static inline void mce_intel_cmci_poll(void) { }
36 static inline void mce_intel_hcpu_update(unsigned long cpu
) { }
39 void mce_timer_kick(unsigned long interval
);
41 #ifdef CONFIG_ACPI_APEI
42 int apei_write_mce(struct mce
*m
);
43 ssize_t
apei_read_mce(struct mce
*m
, u64
*record_id
);
44 int apei_check_mce(void);
45 int apei_clear_mce(u64 record_id
);
47 static inline int apei_write_mce(struct mce
*m
)
51 static inline ssize_t
apei_read_mce(struct mce
*m
, u64
*record_id
)
55 static inline int apei_check_mce(void)
59 static inline int apei_clear_mce(u64 record_id
)