This source file includes following definitions.
- notifier_from_errno
- notifier_to_errno
1
2
3
4
5
6
7
8
9
10
11 #ifndef _LINUX_NOTIFIER_H
12 #define _LINUX_NOTIFIER_H
13 #include <linux/errno.h>
14 #include <linux/mutex.h>
15 #include <linux/rwsem.h>
16 #include <linux/srcu.h>
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49 struct notifier_block;
50
51 typedef int (*notifier_fn_t)(struct notifier_block *nb,
52 unsigned long action, void *data);
53
54 struct notifier_block {
55 notifier_fn_t notifier_call;
56 struct notifier_block __rcu *next;
57 int priority;
58 };
59
60 struct atomic_notifier_head {
61 spinlock_t lock;
62 struct notifier_block __rcu *head;
63 };
64
65 struct blocking_notifier_head {
66 struct rw_semaphore rwsem;
67 struct notifier_block __rcu *head;
68 };
69
70 struct raw_notifier_head {
71 struct notifier_block __rcu *head;
72 };
73
74 struct srcu_notifier_head {
75 struct mutex mutex;
76 struct srcu_struct srcu;
77 struct notifier_block __rcu *head;
78 };
79
80 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { \
81 spin_lock_init(&(name)->lock); \
82 (name)->head = NULL; \
83 } while (0)
84 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { \
85 init_rwsem(&(name)->rwsem); \
86 (name)->head = NULL; \
87 } while (0)
88 #define RAW_INIT_NOTIFIER_HEAD(name) do { \
89 (name)->head = NULL; \
90 } while (0)
91
92
93 extern void srcu_init_notifier_head(struct srcu_notifier_head *nh);
94 #define srcu_cleanup_notifier_head(name) \
95 cleanup_srcu_struct(&(name)->srcu);
96
97 #define ATOMIC_NOTIFIER_INIT(name) { \
98 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
99 .head = NULL }
100 #define BLOCKING_NOTIFIER_INIT(name) { \
101 .rwsem = __RWSEM_INITIALIZER((name).rwsem), \
102 .head = NULL }
103 #define RAW_NOTIFIER_INIT(name) { \
104 .head = NULL }
105
106 #define SRCU_NOTIFIER_INIT(name, pcpu) \
107 { \
108 .mutex = __MUTEX_INITIALIZER(name.mutex), \
109 .head = NULL, \
110 .srcu = __SRCU_STRUCT_INIT(name.srcu, pcpu), \
111 }
112
113 #define ATOMIC_NOTIFIER_HEAD(name) \
114 struct atomic_notifier_head name = \
115 ATOMIC_NOTIFIER_INIT(name)
116 #define BLOCKING_NOTIFIER_HEAD(name) \
117 struct blocking_notifier_head name = \
118 BLOCKING_NOTIFIER_INIT(name)
119 #define RAW_NOTIFIER_HEAD(name) \
120 struct raw_notifier_head name = \
121 RAW_NOTIFIER_INIT(name)
122
123 #ifdef CONFIG_TREE_SRCU
124 #define _SRCU_NOTIFIER_HEAD(name, mod) \
125 static DEFINE_PER_CPU(struct srcu_data, name##_head_srcu_data); \
126 mod struct srcu_notifier_head name = \
127 SRCU_NOTIFIER_INIT(name, name##_head_srcu_data)
128
129 #else
130 #define _SRCU_NOTIFIER_HEAD(name, mod) \
131 mod struct srcu_notifier_head name = \
132 SRCU_NOTIFIER_INIT(name, name)
133
134 #endif
135
136 #define SRCU_NOTIFIER_HEAD(name) \
137 _SRCU_NOTIFIER_HEAD(name, )
138
139 #define SRCU_NOTIFIER_HEAD_STATIC(name) \
140 _SRCU_NOTIFIER_HEAD(name, static)
141
142 #ifdef __KERNEL__
143
144 extern int atomic_notifier_chain_register(struct atomic_notifier_head *nh,
145 struct notifier_block *nb);
146 extern int blocking_notifier_chain_register(struct blocking_notifier_head *nh,
147 struct notifier_block *nb);
148 extern int raw_notifier_chain_register(struct raw_notifier_head *nh,
149 struct notifier_block *nb);
150 extern int srcu_notifier_chain_register(struct srcu_notifier_head *nh,
151 struct notifier_block *nb);
152
153 extern int blocking_notifier_chain_cond_register(
154 struct blocking_notifier_head *nh,
155 struct notifier_block *nb);
156
157 extern int atomic_notifier_chain_unregister(struct atomic_notifier_head *nh,
158 struct notifier_block *nb);
159 extern int blocking_notifier_chain_unregister(struct blocking_notifier_head *nh,
160 struct notifier_block *nb);
161 extern int raw_notifier_chain_unregister(struct raw_notifier_head *nh,
162 struct notifier_block *nb);
163 extern int srcu_notifier_chain_unregister(struct srcu_notifier_head *nh,
164 struct notifier_block *nb);
165
166 extern int atomic_notifier_call_chain(struct atomic_notifier_head *nh,
167 unsigned long val, void *v);
168 extern int __atomic_notifier_call_chain(struct atomic_notifier_head *nh,
169 unsigned long val, void *v, int nr_to_call, int *nr_calls);
170 extern int blocking_notifier_call_chain(struct blocking_notifier_head *nh,
171 unsigned long val, void *v);
172 extern int __blocking_notifier_call_chain(struct blocking_notifier_head *nh,
173 unsigned long val, void *v, int nr_to_call, int *nr_calls);
174 extern int raw_notifier_call_chain(struct raw_notifier_head *nh,
175 unsigned long val, void *v);
176 extern int __raw_notifier_call_chain(struct raw_notifier_head *nh,
177 unsigned long val, void *v, int nr_to_call, int *nr_calls);
178 extern int srcu_notifier_call_chain(struct srcu_notifier_head *nh,
179 unsigned long val, void *v);
180 extern int __srcu_notifier_call_chain(struct srcu_notifier_head *nh,
181 unsigned long val, void *v, int nr_to_call, int *nr_calls);
182
183 #define NOTIFY_DONE 0x0000
184 #define NOTIFY_OK 0x0001
185 #define NOTIFY_STOP_MASK 0x8000
186 #define NOTIFY_BAD (NOTIFY_STOP_MASK|0x0002)
187
188
189
190
191 #define NOTIFY_STOP (NOTIFY_OK|NOTIFY_STOP_MASK)
192
193
194 static inline int notifier_from_errno(int err)
195 {
196 if (err)
197 return NOTIFY_STOP_MASK | (NOTIFY_OK - err);
198
199 return NOTIFY_OK;
200 }
201
202
203 static inline int notifier_to_errno(int ret)
204 {
205 ret &= ~NOTIFY_STOP_MASK;
206 return ret > NOTIFY_OK ? NOTIFY_OK - ret : 0;
207 }
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227 #define NETLINK_URELEASE 0x0001
228
229
230
231
232 #define KBD_KEYCODE 0x0001
233 #define KBD_UNBOUND_KEYCODE 0x0002
234 #define KBD_UNICODE 0x0003
235 #define KBD_KEYSYM 0x0004
236 #define KBD_POST_KEYSYM 0x0005
237
238 extern struct blocking_notifier_head reboot_notifier_list;
239
240 #endif
241 #endif