Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __LINUX_COMPLETION_H |
| 3 | #define __LINUX_COMPLETION_H |
| 4 | |
| 5 | /* |
| 6 | * (C) Copyright 2001 Linus Torvalds |
| 7 | * |
| 8 | * Atomic wait-for-completion handler data structures. |
Peter Zijlstra | b8a2162 | 2013-10-04 22:06:53 +0200 | [diff] [blame] | 9 | * See kernel/sched/completion.c for details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/wait.h> |
| 13 | |
Randy Dunlap | ee2f154 | 2010-10-26 14:17:25 -0700 | [diff] [blame] | 14 | /* |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 15 | * struct completion - structure used to maintain state for a "completion" |
| 16 | * |
| 17 | * This is the opaque structure used to maintain the state for a "completion". |
| 18 | * Completions currently use a FIFO to queue threads that have to wait for |
| 19 | * the "completion" event. |
| 20 | * |
| 21 | * See also: complete(), wait_for_completion() (and friends _timeout, |
| 22 | * _interruptible, _interruptible_timeout, and _killable), init_completion(), |
Wolfram Sang | c32f74a | 2013-11-14 14:32:01 -0800 | [diff] [blame] | 23 | * reinit_completion(), and macros DECLARE_COMPLETION(), |
| 24 | * DECLARE_COMPLETION_ONSTACK(). |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 25 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | struct completion { |
| 27 | unsigned int done; |
| 28 | wait_queue_head_t wait; |
| 29 | }; |
| 30 | |
Byungchul Park | a7967bc | 2017-10-25 17:56:03 +0900 | [diff] [blame] | 31 | #define init_completion_map(x, m) __init_completion(x) |
Byungchul Park | cd8084f | 2017-08-07 16:12:56 +0900 | [diff] [blame] | 32 | #define init_completion(x) __init_completion(x) |
| 33 | static inline void complete_acquire(struct completion *x) {} |
| 34 | static inline void complete_release(struct completion *x) {} |
Byungchul Park | cd8084f | 2017-08-07 16:12:56 +0900 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define COMPLETION_INITIALIZER(work) \ |
| 37 | { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) } |
| 38 | |
Byungchul Park | a7967bc | 2017-10-25 17:56:03 +0900 | [diff] [blame] | 39 | #define COMPLETION_INITIALIZER_ONSTACK_MAP(work, map) \ |
| 40 | (*({ init_completion_map(&(work), &(map)); &(work); })) |
| 41 | |
Ingo Molnar | f86bf9b | 2006-07-10 04:44:05 -0700 | [diff] [blame] | 42 | #define COMPLETION_INITIALIZER_ONSTACK(work) \ |
Boqun Feng | ec81048 | 2017-08-23 23:25:38 +0800 | [diff] [blame] | 43 | (*({ init_completion(&work); &work; })) |
Ingo Molnar | f86bf9b | 2006-07-10 04:44:05 -0700 | [diff] [blame] | 44 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 45 | /** |
Randy Dunlap | ee2f154 | 2010-10-26 14:17:25 -0700 | [diff] [blame] | 46 | * DECLARE_COMPLETION - declare and initialize a completion structure |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 47 | * @work: identifier for the completion structure |
| 48 | * |
| 49 | * This macro declares and initializes a completion structure. Generally used |
| 50 | * for static declarations. You should use the _ONSTACK variant for automatic |
| 51 | * variables. |
| 52 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define DECLARE_COMPLETION(work) \ |
| 54 | struct completion work = COMPLETION_INITIALIZER(work) |
| 55 | |
Ingo Molnar | 8b3db9c | 2006-07-03 00:24:28 -0700 | [diff] [blame] | 56 | /* |
| 57 | * Lockdep needs to run a non-constant initializer for on-stack |
| 58 | * completions - so we use the _ONSTACK() variant for those that |
| 59 | * are on the kernel stack: |
| 60 | */ |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 61 | /** |
Randy Dunlap | ee2f154 | 2010-10-26 14:17:25 -0700 | [diff] [blame] | 62 | * DECLARE_COMPLETION_ONSTACK - declare and initialize a completion structure |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 63 | * @work: identifier for the completion structure |
| 64 | * |
| 65 | * This macro declares and initializes a completion structure on the kernel |
| 66 | * stack. |
| 67 | */ |
Ingo Molnar | 8b3db9c | 2006-07-03 00:24:28 -0700 | [diff] [blame] | 68 | #ifdef CONFIG_LOCKDEP |
| 69 | # define DECLARE_COMPLETION_ONSTACK(work) \ |
Ingo Molnar | f86bf9b | 2006-07-10 04:44:05 -0700 | [diff] [blame] | 70 | struct completion work = COMPLETION_INITIALIZER_ONSTACK(work) |
Byungchul Park | a7967bc | 2017-10-25 17:56:03 +0900 | [diff] [blame] | 71 | # define DECLARE_COMPLETION_ONSTACK_MAP(work, map) \ |
| 72 | struct completion work = COMPLETION_INITIALIZER_ONSTACK_MAP(work, map) |
Ingo Molnar | 8b3db9c | 2006-07-03 00:24:28 -0700 | [diff] [blame] | 73 | #else |
| 74 | # define DECLARE_COMPLETION_ONSTACK(work) DECLARE_COMPLETION(work) |
Byungchul Park | a7967bc | 2017-10-25 17:56:03 +0900 | [diff] [blame] | 75 | # define DECLARE_COMPLETION_ONSTACK_MAP(work, map) DECLARE_COMPLETION(work) |
Ingo Molnar | 8b3db9c | 2006-07-03 00:24:28 -0700 | [diff] [blame] | 76 | #endif |
| 77 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 78 | /** |
Randy Dunlap | ee2f154 | 2010-10-26 14:17:25 -0700 | [diff] [blame] | 79 | * init_completion - Initialize a dynamically allocated completion |
Wolfram Sang | c32f74a | 2013-11-14 14:32:01 -0800 | [diff] [blame] | 80 | * @x: pointer to completion structure that is to be initialized |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 81 | * |
| 82 | * This inline function will initialize a dynamically created completion |
| 83 | * structure. |
| 84 | */ |
Byungchul Park | cd8084f | 2017-08-07 16:12:56 +0900 | [diff] [blame] | 85 | static inline void __init_completion(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
| 87 | x->done = 0; |
| 88 | init_waitqueue_head(&x->wait); |
| 89 | } |
| 90 | |
Wolfram Sang | c32f74a | 2013-11-14 14:32:01 -0800 | [diff] [blame] | 91 | /** |
| 92 | * reinit_completion - reinitialize a completion structure |
| 93 | * @x: pointer to completion structure that is to be reinitialized |
| 94 | * |
| 95 | * This inline function should be used to reinitialize a completion structure so it can |
| 96 | * be reused. This is especially important after complete_all() is used. |
| 97 | */ |
| 98 | static inline void reinit_completion(struct completion *x) |
| 99 | { |
| 100 | x->done = 0; |
| 101 | } |
| 102 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 103 | extern void wait_for_completion(struct completion *); |
Vladimir Davydov | 686855f | 2013-02-14 18:19:58 +0400 | [diff] [blame] | 104 | extern void wait_for_completion_io(struct completion *); |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 105 | extern int wait_for_completion_interruptible(struct completion *x); |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 106 | extern int wait_for_completion_killable(struct completion *x); |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 107 | extern unsigned long wait_for_completion_timeout(struct completion *x, |
| 108 | unsigned long timeout); |
Vladimir Davydov | 686855f | 2013-02-14 18:19:58 +0400 | [diff] [blame] | 109 | extern unsigned long wait_for_completion_io_timeout(struct completion *x, |
| 110 | unsigned long timeout); |
NeilBrown | 6bf4123 | 2011-01-05 12:50:16 +1100 | [diff] [blame] | 111 | extern long wait_for_completion_interruptible_timeout( |
| 112 | struct completion *x, unsigned long timeout); |
| 113 | extern long wait_for_completion_killable_timeout( |
| 114 | struct completion *x, unsigned long timeout); |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 115 | extern bool try_wait_for_completion(struct completion *x); |
| 116 | extern bool completion_done(struct completion *x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 118 | extern void complete(struct completion *); |
| 119 | extern void complete_all(struct completion *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #endif |