1
2
3
4
5
6
7 #ifndef ASM_POWERPC_EEH_EVENT_H
8 #define ASM_POWERPC_EEH_EVENT_H
9 #ifdef __KERNEL__
10
11
12
13
14
15
16
17 struct eeh_event {
18 struct list_head list;
19 struct eeh_pe *pe;
20 };
21
22 int eeh_event_init(void);
23 int eeh_send_failure_event(struct eeh_pe *pe);
24 int __eeh_send_failure_event(struct eeh_pe *pe);
25 void eeh_remove_event(struct eeh_pe *pe, bool force);
26 void eeh_handle_normal_event(struct eeh_pe *pe);
27 void eeh_handle_special_event(void);
28
29 #endif
30 #endif