1 #ifndef _bluesmoke_h 2 #define _bluesmoke_h 3 4 /* Notifier to allow an external module to read machine check events */ 5 6 extern struct notifier_block *mc_notifier_list; 7 struct notifier_mc_err { 8 unsigned int cpunum; 9 unsigned int banknum; 10 u64 mci_ctl; 11 u64 mci_status; 12 u64 mci_addr; 13 u64 mci_misc; 14 }; 15 16 #endif 17