1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_PREEMPT_H
3 #define __ASM_PREEMPT_H
5 #include <linux/thread_info.h>
7 #define PREEMPT_NEED_RESCHED BIT(32)
8 #define PREEMPT_ENABLED (PREEMPT_NEED_RESCHED)
10 static inline int preempt_count(void)
12 return READ_ONCE(current_thread_info()->preempt
.count
);
15 static inline void preempt_count_set(u64 pc
)
17 /* Preserve existing value of PREEMPT_NEED_RESCHED */
18 WRITE_ONCE(current_thread_info()->preempt
.count
, pc
);
21 #define init_task_preempt_count(p) do { \
22 task_thread_info(p)->preempt_count = FORK_PREEMPT_COUNT; \
25 #define init_idle_preempt_count(p, cpu) do { \
26 task_thread_info(p)->preempt_count = PREEMPT_ENABLED; \
29 static inline void set_preempt_need_resched(void)
31 current_thread_info()->preempt
.need_resched
= 0;
34 static inline void clear_preempt_need_resched(void)
36 current_thread_info()->preempt
.need_resched
= 1;
39 static inline bool test_preempt_need_resched(void)
41 return !current_thread_info()->preempt
.need_resched
;
44 static inline void __preempt_count_add(int val
)
46 u32 pc
= READ_ONCE(current_thread_info()->preempt
.count
);
48 WRITE_ONCE(current_thread_info()->preempt
.count
, pc
);
51 static inline void __preempt_count_sub(int val
)
53 u32 pc
= READ_ONCE(current_thread_info()->preempt
.count
);
55 WRITE_ONCE(current_thread_info()->preempt
.count
, pc
);
58 static inline bool __preempt_count_dec_and_test(void)
60 struct thread_info
*ti
= current_thread_info();
61 u64 pc
= READ_ONCE(ti
->preempt_count
);
63 /* Update only the count field, leaving need_resched unchanged */
64 WRITE_ONCE(ti
->preempt
.count
, --pc
);
67 * If we wrote back all zeroes, then we're preemptible and in
68 * need of a reschedule. Otherwise, we need to reload the
69 * preempt_count in case the need_resched flag was cleared by an
70 * interrupt occurring between the non-atomic READ_ONCE/WRITE_ONCE
73 return !pc
|| !READ_ONCE(ti
->preempt_count
);
76 static inline bool should_resched(int preempt_offset
)
78 u64 pc
= READ_ONCE(current_thread_info()->preempt_count
);
79 return pc
== preempt_offset
;
83 void preempt_schedule(void);
84 #define __preempt_schedule() preempt_schedule()
85 void preempt_schedule_notrace(void);
86 #define __preempt_schedule_notrace() preempt_schedule_notrace()
87 #endif /* CONFIG_PREEMPT */
89 #endif /* __ASM_PREEMPT_H */