diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2020-03-21 12:25:59 +0100 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2020-03-21 16:00:23 +0100 |
commit | b3212fe2bc06fa1014b3063b85b2bac4332a1c28 (patch) | |
tree | 5c27a5307ee1bd6784fde4be7fa11c05f29a32b4 /kernel/sched/sched.h | |
parent | timekeeping: Split jiffies seqlock (diff) | |
download | linux-b3212fe2bc06fa1014b3063b85b2bac4332a1c28.tar.xz linux-b3212fe2bc06fa1014b3063b85b2bac4332a1c28.zip |
sched/swait: Prepare usage in completions
As a preparation to use simple wait queues for completions:
- Provide swake_up_all_locked() to support complete_all()
- Make __prepare_to_swait() public available
This is done to enable the usage of complete() within truly atomic contexts
on a PREEMPT_RT enabled kernel.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200321113242.228481202@linutronix.de
Diffstat (limited to 'kernel/sched/sched.h')
-rw-r--r-- | kernel/sched/sched.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 9ea647835fd6..fdc77e796324 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -2492,3 +2492,6 @@ static inline bool is_per_cpu_kthread(struct task_struct *p) return true; } #endif + +void swake_up_all_locked(struct swait_queue_head *q); +void __prepare_to_swait(struct swait_queue_head *q, struct swait_queue *wait); |