blob: 0662a417febe34fb9e638857f13a6d52fcaf0d49 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#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 Zijlstrab8a21622013-10-04 22:06:53 +02009 * See kernel/sched/completion.c for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/wait.h>
Byungchul Parkea3f2c02017-08-17 17:57:41 +090013#ifdef CONFIG_LOCKDEP_COMPLETIONS
Byungchul Parkcd8084f2017-08-07 16:12:56 +090014#include <linux/lockdep.h>
15#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Randy Dunlapee2f1542010-10-26 14:17:25 -070017/*
Kevin Diggs65eb3dc2008-08-26 10:26:54 +020018 * struct completion - structure used to maintain state for a "completion"
19 *
20 * This is the opaque structure used to maintain the state for a "completion".
21 * Completions currently use a FIFO to queue threads that have to wait for
22 * the "completion" event.
23 *
24 * See also: complete(), wait_for_completion() (and friends _timeout,
25 * _interruptible, _interruptible_timeout, and _killable), init_completion(),
Wolfram Sangc32f74a2013-11-14 14:32:01 -080026 * reinit_completion(), and macros DECLARE_COMPLETION(),
27 * DECLARE_COMPLETION_ONSTACK().
Kevin Diggs65eb3dc2008-08-26 10:26:54 +020028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029struct completion {
30 unsigned int done;
31 wait_queue_head_t wait;
Byungchul Parkea3f2c02017-08-17 17:57:41 +090032#ifdef CONFIG_LOCKDEP_COMPLETIONS
Byungchul Parkcd8084f2017-08-07 16:12:56 +090033 struct lockdep_map_cross map;
34#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
Byungchul Parkea3f2c02017-08-17 17:57:41 +090037#ifdef CONFIG_LOCKDEP_COMPLETIONS
Byungchul Parkcd8084f2017-08-07 16:12:56 +090038static inline void complete_acquire(struct completion *x)
39{
40 lock_acquire_exclusive((struct lockdep_map *)&x->map, 0, 0, NULL, _RET_IP_);
41}
42
43static inline void complete_release(struct completion *x)
44{
45 lock_release((struct lockdep_map *)&x->map, 0, _RET_IP_);
46}
47
48static inline void complete_release_commit(struct completion *x)
49{
50 lock_commit_crosslock((struct lockdep_map *)&x->map);
51}
52
Byungchul Parka7967bc2017-10-25 17:56:03 +090053#define init_completion_map(x, m) \
54do { \
55 lockdep_init_map_crosslock((struct lockdep_map *)&(x)->map, \
56 (m)->name, (m)->key, 0); \
57 __init_completion(x); \
58} while (0)
59
Byungchul Parkcd8084f2017-08-07 16:12:56 +090060#define init_completion(x) \
61do { \
62 static struct lock_class_key __key; \
63 lockdep_init_map_crosslock((struct lockdep_map *)&(x)->map, \
Byungchul Park24208432017-10-25 17:55:59 +090064 "(completion)" #x, \
Byungchul Parkcd8084f2017-08-07 16:12:56 +090065 &__key, 0); \
66 __init_completion(x); \
67} while (0)
68#else
Byungchul Parka7967bc2017-10-25 17:56:03 +090069#define init_completion_map(x, m) __init_completion(x)
Byungchul Parkcd8084f2017-08-07 16:12:56 +090070#define init_completion(x) __init_completion(x)
71static inline void complete_acquire(struct completion *x) {}
72static inline void complete_release(struct completion *x) {}
73static inline void complete_release_commit(struct completion *x) {}
74#endif
75
Byungchul Parkea3f2c02017-08-17 17:57:41 +090076#ifdef CONFIG_LOCKDEP_COMPLETIONS
Byungchul Parkcd8084f2017-08-07 16:12:56 +090077#define COMPLETION_INITIALIZER(work) \
78 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait), \
Byungchul Park24208432017-10-25 17:55:59 +090079 STATIC_CROSS_LOCKDEP_MAP_INIT("(completion)" #work, &(work)) }
Byungchul Parkcd8084f2017-08-07 16:12:56 +090080#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define COMPLETION_INITIALIZER(work) \
82 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
Byungchul Parkcd8084f2017-08-07 16:12:56 +090083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Byungchul Parka7967bc2017-10-25 17:56:03 +090085#define COMPLETION_INITIALIZER_ONSTACK_MAP(work, map) \
86 (*({ init_completion_map(&(work), &(map)); &(work); }))
87
Ingo Molnarf86bf9b2006-07-10 04:44:05 -070088#define COMPLETION_INITIALIZER_ONSTACK(work) \
Boqun Fengec810482017-08-23 23:25:38 +080089 (*({ init_completion(&work); &work; }))
Ingo Molnarf86bf9b2006-07-10 04:44:05 -070090
Kevin Diggs65eb3dc2008-08-26 10:26:54 +020091/**
Randy Dunlapee2f1542010-10-26 14:17:25 -070092 * DECLARE_COMPLETION - declare and initialize a completion structure
Kevin Diggs65eb3dc2008-08-26 10:26:54 +020093 * @work: identifier for the completion structure
94 *
95 * This macro declares and initializes a completion structure. Generally used
96 * for static declarations. You should use the _ONSTACK variant for automatic
97 * variables.
98 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define DECLARE_COMPLETION(work) \
100 struct completion work = COMPLETION_INITIALIZER(work)
101
Ingo Molnar8b3db9c2006-07-03 00:24:28 -0700102/*
103 * Lockdep needs to run a non-constant initializer for on-stack
104 * completions - so we use the _ONSTACK() variant for those that
105 * are on the kernel stack:
106 */
Kevin Diggs65eb3dc2008-08-26 10:26:54 +0200107/**
Randy Dunlapee2f1542010-10-26 14:17:25 -0700108 * DECLARE_COMPLETION_ONSTACK - declare and initialize a completion structure
Kevin Diggs65eb3dc2008-08-26 10:26:54 +0200109 * @work: identifier for the completion structure
110 *
111 * This macro declares and initializes a completion structure on the kernel
112 * stack.
113 */
Ingo Molnar8b3db9c2006-07-03 00:24:28 -0700114#ifdef CONFIG_LOCKDEP
115# define DECLARE_COMPLETION_ONSTACK(work) \
Ingo Molnarf86bf9b2006-07-10 04:44:05 -0700116 struct completion work = COMPLETION_INITIALIZER_ONSTACK(work)
Byungchul Parka7967bc2017-10-25 17:56:03 +0900117# define DECLARE_COMPLETION_ONSTACK_MAP(work, map) \
118 struct completion work = COMPLETION_INITIALIZER_ONSTACK_MAP(work, map)
Ingo Molnar8b3db9c2006-07-03 00:24:28 -0700119#else
120# define DECLARE_COMPLETION_ONSTACK(work) DECLARE_COMPLETION(work)
Byungchul Parka7967bc2017-10-25 17:56:03 +0900121# define DECLARE_COMPLETION_ONSTACK_MAP(work, map) DECLARE_COMPLETION(work)
Ingo Molnar8b3db9c2006-07-03 00:24:28 -0700122#endif
123
Kevin Diggs65eb3dc2008-08-26 10:26:54 +0200124/**
Randy Dunlapee2f1542010-10-26 14:17:25 -0700125 * init_completion - Initialize a dynamically allocated completion
Wolfram Sangc32f74a2013-11-14 14:32:01 -0800126 * @x: pointer to completion structure that is to be initialized
Kevin Diggs65eb3dc2008-08-26 10:26:54 +0200127 *
128 * This inline function will initialize a dynamically created completion
129 * structure.
130 */
Byungchul Parkcd8084f2017-08-07 16:12:56 +0900131static inline void __init_completion(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 x->done = 0;
134 init_waitqueue_head(&x->wait);
135}
136
Wolfram Sangc32f74a2013-11-14 14:32:01 -0800137/**
138 * reinit_completion - reinitialize a completion structure
139 * @x: pointer to completion structure that is to be reinitialized
140 *
141 * This inline function should be used to reinitialize a completion structure so it can
142 * be reused. This is especially important after complete_all() is used.
143 */
144static inline void reinit_completion(struct completion *x)
145{
146 x->done = 0;
147}
148
Ingo Molnarb15136e2007-10-24 18:23:48 +0200149extern void wait_for_completion(struct completion *);
Vladimir Davydov686855f2013-02-14 18:19:58 +0400150extern void wait_for_completion_io(struct completion *);
Ingo Molnarb15136e2007-10-24 18:23:48 +0200151extern int wait_for_completion_interruptible(struct completion *x);
Matthew Wilcox009e5772007-12-06 12:29:54 -0500152extern int wait_for_completion_killable(struct completion *x);
Ingo Molnarb15136e2007-10-24 18:23:48 +0200153extern unsigned long wait_for_completion_timeout(struct completion *x,
154 unsigned long timeout);
Vladimir Davydov686855f2013-02-14 18:19:58 +0400155extern unsigned long wait_for_completion_io_timeout(struct completion *x,
156 unsigned long timeout);
NeilBrown6bf41232011-01-05 12:50:16 +1100157extern long wait_for_completion_interruptible_timeout(
158 struct completion *x, unsigned long timeout);
159extern long wait_for_completion_killable_timeout(
160 struct completion *x, unsigned long timeout);
Dave Chinnerbe4de352008-08-15 00:40:44 -0700161extern bool try_wait_for_completion(struct completion *x);
162extern bool completion_done(struct completion *x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Ingo Molnarb15136e2007-10-24 18:23:48 +0200164extern void complete(struct completion *);
165extern void complete_all(struct completion *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#endif