0001
0002
0003
0004
0005
0006
0007 #ifndef ASM_POWERPC_EEH_EVENT_H
0008 #define ASM_POWERPC_EEH_EVENT_H
0009 #ifdef __KERNEL__
0010
0011
0012
0013
0014
0015
0016
0017 struct eeh_event {
0018 struct list_head list;
0019 struct eeh_pe *pe;
0020 };
0021
0022 int eeh_event_init(void);
0023 int eeh_send_failure_event(struct eeh_pe *pe);
0024 int __eeh_send_failure_event(struct eeh_pe *pe);
0025 void eeh_remove_event(struct eeh_pe *pe, bool force);
0026 void eeh_handle_normal_event(struct eeh_pe *pe);
0027 void eeh_handle_special_event(void);
0028
0029 #endif
0030 #endif