]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/preempt.h
preempt: Use preempt_schedule_context() as the official tracing preemption point
[mirror_ubuntu-zesty-kernel.git] / include / linux / preempt.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_PREEMPT_H
2#define __LINUX_PREEMPT_H
3
4/*
5 * include/linux/preempt.h - macros for accessing and manipulating
6 * preempt_count (used for kernel preemption, interrupt count, etc.)
7 */
8
1da177e4 9#include <linux/linkage.h>
e107be36 10#include <linux/list.h>
1da177e4 11
92cf2118
FW
12/*
13 * We put the hardirq and softirq counter into the preemption
14 * counter. The bitmask has the following meaning:
15 *
16 * - bits 0-7 are the preemption count (max preemption depth: 256)
17 * - bits 8-15 are the softirq count (max # of softirqs: 256)
18 *
19 * The hardirq count could in theory be the same as the number of
20 * interrupts in the system, but we run all interrupt handlers with
21 * interrupts disabled, so we cannot have nesting interrupts. Though
22 * there are a few palaeontologic drivers which reenable interrupts in
23 * the handler, so we need more than one bit here.
24 *
2e10e71c
FW
25 * PREEMPT_MASK: 0x000000ff
26 * SOFTIRQ_MASK: 0x0000ff00
27 * HARDIRQ_MASK: 0x000f0000
28 * NMI_MASK: 0x00100000
29 * PREEMPT_ACTIVE: 0x00200000
30 * PREEMPT_NEED_RESCHED: 0x80000000
92cf2118
FW
31 */
32#define PREEMPT_BITS 8
33#define SOFTIRQ_BITS 8
34#define HARDIRQ_BITS 4
35#define NMI_BITS 1
36
37#define PREEMPT_SHIFT 0
38#define SOFTIRQ_SHIFT (PREEMPT_SHIFT + PREEMPT_BITS)
39#define HARDIRQ_SHIFT (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
40#define NMI_SHIFT (HARDIRQ_SHIFT + HARDIRQ_BITS)
41
42#define __IRQ_MASK(x) ((1UL << (x))-1)
43
44#define PREEMPT_MASK (__IRQ_MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
45#define SOFTIRQ_MASK (__IRQ_MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
46#define HARDIRQ_MASK (__IRQ_MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
47#define NMI_MASK (__IRQ_MASK(NMI_BITS) << NMI_SHIFT)
48
49#define PREEMPT_OFFSET (1UL << PREEMPT_SHIFT)
50#define SOFTIRQ_OFFSET (1UL << SOFTIRQ_SHIFT)
51#define HARDIRQ_OFFSET (1UL << HARDIRQ_SHIFT)
52#define NMI_OFFSET (1UL << NMI_SHIFT)
53
54#define SOFTIRQ_DISABLE_OFFSET (2 * SOFTIRQ_OFFSET)
55
56#define PREEMPT_ACTIVE_BITS 1
57#define PREEMPT_ACTIVE_SHIFT (NMI_SHIFT + NMI_BITS)
58#define PREEMPT_ACTIVE (__IRQ_MASK(PREEMPT_ACTIVE_BITS) << PREEMPT_ACTIVE_SHIFT)
59
2e10e71c
FW
60/* We use the MSB mostly because its available */
61#define PREEMPT_NEED_RESCHED 0x80000000
62
63/* preempt_count() and related functions, depends on PREEMPT_NEED_RESCHED */
64#include <asm/preempt.h>
65
92cf2118
FW
66#define hardirq_count() (preempt_count() & HARDIRQ_MASK)
67#define softirq_count() (preempt_count() & SOFTIRQ_MASK)
68#define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK \
69 | NMI_MASK))
70
71/*
72 * Are we doing bottom half or hardware interrupt processing?
73 * Are we in a softirq context? Interrupt context?
74 * in_softirq - Are we currently processing softirq or have bh disabled?
75 * in_serving_softirq - Are we currently processing softirq?
76 */
77#define in_irq() (hardirq_count())
78#define in_softirq() (softirq_count())
79#define in_interrupt() (irq_count())
80#define in_serving_softirq() (softirq_count() & SOFTIRQ_OFFSET)
81
82/*
83 * Are we in NMI context?
84 */
85#define in_nmi() (preempt_count() & NMI_MASK)
86
87#if defined(CONFIG_PREEMPT_COUNT)
90b62b51 88# define PREEMPT_DISABLE_OFFSET 1
92cf2118 89#else
90b62b51 90# define PREEMPT_DISABLE_OFFSET 0
92cf2118
FW
91#endif
92
93/*
94 * The preempt_count offset needed for things like:
95 *
96 * spin_lock_bh()
97 *
98 * Which need to disable both preemption (CONFIG_PREEMPT_COUNT) and
99 * softirqs, such that unlock sequences of:
100 *
101 * spin_unlock();
102 * local_bh_enable();
103 *
104 * Work as expected.
105 */
90b62b51 106#define SOFTIRQ_LOCK_OFFSET (SOFTIRQ_DISABLE_OFFSET + PREEMPT_DISABLE_OFFSET)
92cf2118
FW
107
108/*
109 * Are we running in atomic context? WARNING: this macro cannot
110 * always detect atomic context; in particular, it cannot know about
111 * held spinlocks in non-preemptible kernels. Thus it should not be
112 * used in the general case to determine whether sleeping is possible.
113 * Do not use in_atomic() in driver code.
114 */
3e51f3c4 115#define in_atomic() (preempt_count() != 0)
92cf2118
FW
116
117/*
118 * Check whether we were atomic before we did preempt_disable():
e017cf21 119 * (used by the scheduler)
92cf2118
FW
120 */
121#define in_atomic_preempt_off() \
90b62b51 122 ((preempt_count() & ~PREEMPT_ACTIVE) != PREEMPT_DISABLE_OFFSET)
92cf2118 123
6cd8a4bb 124#if defined(CONFIG_DEBUG_PREEMPT) || defined(CONFIG_PREEMPT_TRACER)
bdb43806
PZ
125extern void preempt_count_add(int val);
126extern void preempt_count_sub(int val);
127#define preempt_count_dec_and_test() ({ preempt_count_sub(1); should_resched(); })
1da177e4 128#else
bdb43806
PZ
129#define preempt_count_add(val) __preempt_count_add(val)
130#define preempt_count_sub(val) __preempt_count_sub(val)
131#define preempt_count_dec_and_test() __preempt_count_dec_and_test()
1da177e4
LT
132#endif
133
bdb43806
PZ
134#define __preempt_count_inc() __preempt_count_add(1)
135#define __preempt_count_dec() __preempt_count_sub(1)
bdd4e85d 136
bdb43806
PZ
137#define preempt_count_inc() preempt_count_add(1)
138#define preempt_count_dec() preempt_count_sub(1)
bdd4e85d 139
b30f0e3f
FW
140#define preempt_active_enter() \
141do { \
142 preempt_count_add(PREEMPT_ACTIVE + PREEMPT_DISABLE_OFFSET); \
143 barrier(); \
144} while (0)
145
146#define preempt_active_exit() \
147do { \
148 barrier(); \
149 preempt_count_sub(PREEMPT_ACTIVE + PREEMPT_DISABLE_OFFSET); \
150} while (0)
151
bdd4e85d
FW
152#ifdef CONFIG_PREEMPT_COUNT
153
1da177e4
LT
154#define preempt_disable() \
155do { \
bdb43806 156 preempt_count_inc(); \
1da177e4
LT
157 barrier(); \
158} while (0)
159
ba74c144 160#define sched_preempt_enable_no_resched() \
1da177e4
LT
161do { \
162 barrier(); \
bdb43806 163 preempt_count_dec(); \
1da177e4
LT
164} while (0)
165
bdb43806 166#define preempt_enable_no_resched() sched_preempt_enable_no_resched()
ba74c144 167
2e10e71c
FW
168#define preemptible() (preempt_count() == 0 && !irqs_disabled())
169
bdb43806 170#ifdef CONFIG_PREEMPT
1da177e4
LT
171#define preempt_enable() \
172do { \
bdb43806
PZ
173 barrier(); \
174 if (unlikely(preempt_count_dec_and_test())) \
1a338ac3 175 __preempt_schedule(); \
1da177e4
LT
176} while (0)
177
bdb43806
PZ
178#define preempt_check_resched() \
179do { \
180 if (should_resched()) \
1a338ac3 181 __preempt_schedule(); \
bdb43806
PZ
182} while (0)
183
184#else
62b94a08
PZ
185#define preempt_enable() \
186do { \
187 barrier(); \
188 preempt_count_dec(); \
189} while (0)
bdb43806
PZ
190#define preempt_check_resched() do { } while (0)
191#endif
50282528
SR
192
193#define preempt_disable_notrace() \
194do { \
bdb43806 195 __preempt_count_inc(); \
50282528
SR
196 barrier(); \
197} while (0)
198
199#define preempt_enable_no_resched_notrace() \
200do { \
201 barrier(); \
bdb43806 202 __preempt_count_dec(); \
50282528
SR
203} while (0)
204
bdb43806
PZ
205#ifdef CONFIG_PREEMPT
206
50282528
SR
207#define preempt_enable_notrace() \
208do { \
bdb43806
PZ
209 barrier(); \
210 if (unlikely(__preempt_count_dec_and_test())) \
4eaca0a8 211 __preempt_schedule_notrace(); \
50282528 212} while (0)
bdb43806 213#else
62b94a08
PZ
214#define preempt_enable_notrace() \
215do { \
216 barrier(); \
217 __preempt_count_dec(); \
218} while (0)
bdb43806 219#endif
50282528 220
bdd4e85d 221#else /* !CONFIG_PREEMPT_COUNT */
1da177e4 222
386afc91
LT
223/*
224 * Even if we don't have any preemption, we need preempt disable/enable
225 * to be barriers, so that we don't have things like get_user/put_user
226 * that can cause faults and scheduling migrate into our preempt-protected
227 * region.
228 */
bdb43806 229#define preempt_disable() barrier()
386afc91 230#define sched_preempt_enable_no_resched() barrier()
bdb43806
PZ
231#define preempt_enable_no_resched() barrier()
232#define preempt_enable() barrier()
233#define preempt_check_resched() do { } while (0)
386afc91
LT
234
235#define preempt_disable_notrace() barrier()
236#define preempt_enable_no_resched_notrace() barrier()
237#define preempt_enable_notrace() barrier()
2e10e71c 238#define preemptible() 0
50282528 239
bdd4e85d 240#endif /* CONFIG_PREEMPT_COUNT */
1da177e4 241
62b94a08
PZ
242#ifdef MODULE
243/*
244 * Modules have no business playing preemption tricks.
245 */
246#undef sched_preempt_enable_no_resched
247#undef preempt_enable_no_resched
248#undef preempt_enable_no_resched_notrace
249#undef preempt_check_resched
250#endif
251
8cb75e0c
PZ
252#define preempt_set_need_resched() \
253do { \
254 set_preempt_need_resched(); \
255} while (0)
256#define preempt_fold_need_resched() \
257do { \
258 if (tif_need_resched()) \
259 set_preempt_need_resched(); \
260} while (0)
8cb75e0c 261
e107be36
AK
262#ifdef CONFIG_PREEMPT_NOTIFIERS
263
264struct preempt_notifier;
265
266/**
267 * preempt_ops - notifiers called when a task is preempted and rescheduled
268 * @sched_in: we're about to be rescheduled:
269 * notifier: struct preempt_notifier for the task being scheduled
270 * cpu: cpu we're scheduled on
271 * @sched_out: we've just been preempted
272 * notifier: struct preempt_notifier for the task being preempted
273 * next: the task that's kicking us out
8592e648
TH
274 *
275 * Please note that sched_in and out are called under different
276 * contexts. sched_out is called with rq lock held and irq disabled
277 * while sched_in is called without rq lock and irq enabled. This
278 * difference is intentional and depended upon by its users.
e107be36
AK
279 */
280struct preempt_ops {
281 void (*sched_in)(struct preempt_notifier *notifier, int cpu);
282 void (*sched_out)(struct preempt_notifier *notifier,
283 struct task_struct *next);
284};
285
286/**
287 * preempt_notifier - key for installing preemption notifiers
288 * @link: internal use
289 * @ops: defines the notifier functions to be called
290 *
291 * Usually used in conjunction with container_of().
292 */
293struct preempt_notifier {
294 struct hlist_node link;
295 struct preempt_ops *ops;
296};
297
298void preempt_notifier_register(struct preempt_notifier *notifier);
299void preempt_notifier_unregister(struct preempt_notifier *notifier);
300
301static inline void preempt_notifier_init(struct preempt_notifier *notifier,
302 struct preempt_ops *ops)
303{
304 INIT_HLIST_NODE(&notifier->link);
305 notifier->ops = ops;
306}
307
308#endif
309
1da177e4 310#endif /* __LINUX_PREEMPT_H */