Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | #ifndef __LINUX_COMPLETION_H |
2 | #define __LINUX_COMPLETION_H | |
3 | ||
4 | /* | |
5 | * (C) Copyright 2001 Linus Torvalds | |
6 | * | |
7 | * Atomic wait-for-completion handler data structures. | |
b8a21626 | 8 | * See kernel/sched/completion.c for details. |
1da177e4 LT |
9 | */ |
10 | ||
11 | #include <linux/wait.h> | |
12 | ||
ee2f154a | 13 | /* |
65eb3dc6 KD |
14 | * struct completion - structure used to maintain state for a "completion" |
15 | * | |
16 | * This is the opaque structure used to maintain the state for a "completion". | |
17 | * Completions currently use a FIFO to queue threads that have to wait for | |
18 | * the "completion" event. | |
19 | * | |
20 | * See also: complete(), wait_for_completion() (and friends _timeout, | |
21 | * _interruptible, _interruptible_timeout, and _killable), init_completion(), | |
c32f74ab WS |
22 | * reinit_completion(), and macros DECLARE_COMPLETION(), |
23 | * DECLARE_COMPLETION_ONSTACK(). | |
65eb3dc6 | 24 | */ |
1da177e4 LT |
25 | struct completion { |
26 | unsigned int done; | |
27 | wait_queue_head_t wait; | |
28 | }; | |
29 | ||
30 | #define COMPLETION_INITIALIZER(work) \ | |
31 | { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) } | |
32 | ||
f86bf9b7 IM |
33 | #define COMPLETION_INITIALIZER_ONSTACK(work) \ |
34 | ({ init_completion(&work); work; }) | |
35 | ||
65eb3dc6 | 36 | /** |
ee2f154a | 37 | * DECLARE_COMPLETION - declare and initialize a completion structure |
65eb3dc6 KD |
38 | * @work: identifier for the completion structure |
39 | * | |
40 | * This macro declares and initializes a completion structure. Generally used | |
41 | * for static declarations. You should use the _ONSTACK variant for automatic | |
42 | * variables. | |
43 | */ | |
1da177e4 LT |
44 | #define DECLARE_COMPLETION(work) \ |
45 | struct completion work = COMPLETION_INITIALIZER(work) | |
46 | ||
8b3db9c5 IM |
47 | /* |
48 | * Lockdep needs to run a non-constant initializer for on-stack | |
49 | * completions - so we use the _ONSTACK() variant for those that | |
50 | * are on the kernel stack: | |
51 | */ | |
65eb3dc6 | 52 | /** |
ee2f154a | 53 | * DECLARE_COMPLETION_ONSTACK - declare and initialize a completion structure |
65eb3dc6 KD |
54 | * @work: identifier for the completion structure |
55 | * | |
56 | * This macro declares and initializes a completion structure on the kernel | |
57 | * stack. | |
58 | */ | |
8b3db9c5 IM |
59 | #ifdef CONFIG_LOCKDEP |
60 | # define DECLARE_COMPLETION_ONSTACK(work) \ | |
f86bf9b7 | 61 | struct completion work = COMPLETION_INITIALIZER_ONSTACK(work) |
8b3db9c5 IM |
62 | #else |
63 | # define DECLARE_COMPLETION_ONSTACK(work) DECLARE_COMPLETION(work) | |
64 | #endif | |
65 | ||
65eb3dc6 | 66 | /** |
ee2f154a | 67 | * init_completion - Initialize a dynamically allocated completion |
c32f74ab | 68 | * @x: pointer to completion structure that is to be initialized |
65eb3dc6 KD |
69 | * |
70 | * This inline function will initialize a dynamically created completion | |
71 | * structure. | |
72 | */ | |
1da177e4 LT |
73 | static inline void init_completion(struct completion *x) |
74 | { | |
75 | x->done = 0; | |
76 | init_waitqueue_head(&x->wait); | |
77 | } | |
78 | ||
c32f74ab WS |
79 | /** |
80 | * reinit_completion - reinitialize a completion structure | |
81 | * @x: pointer to completion structure that is to be reinitialized | |
82 | * | |
83 | * This inline function should be used to reinitialize a completion structure so it can | |
84 | * be reused. This is especially important after complete_all() is used. | |
85 | */ | |
86 | static inline void reinit_completion(struct completion *x) | |
87 | { | |
88 | x->done = 0; | |
89 | } | |
90 | ||
b15136e9 | 91 | extern void wait_for_completion(struct completion *); |
686855f5 | 92 | extern void wait_for_completion_io(struct completion *); |
b15136e9 | 93 | extern int wait_for_completion_interruptible(struct completion *x); |
009e577e | 94 | extern int wait_for_completion_killable(struct completion *x); |
b15136e9 IM |
95 | extern unsigned long wait_for_completion_timeout(struct completion *x, |
96 | unsigned long timeout); | |
686855f5 VD |
97 | extern unsigned long wait_for_completion_io_timeout(struct completion *x, |
98 | unsigned long timeout); | |
6bf41237 N |
99 | extern long wait_for_completion_interruptible_timeout( |
100 | struct completion *x, unsigned long timeout); | |
101 | extern long wait_for_completion_killable_timeout( | |
102 | struct completion *x, unsigned long timeout); | |
be4de352 DC |
103 | extern bool try_wait_for_completion(struct completion *x); |
104 | extern bool completion_done(struct completion *x); | |
b15136e9 IM |
105 | |
106 | extern void complete(struct completion *); | |
107 | extern void complete_all(struct completion *); | |
1da177e4 | 108 | |
1da177e4 | 109 | #endif |