| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * async.c: Asynchronous function calls for boot performance | 
 | 3 |  * | 
 | 4 |  * (C) Copyright 2009 Intel Corporation | 
 | 5 |  * Author: Arjan van de Ven <arjan@linux.intel.com> | 
 | 6 |  * | 
 | 7 |  * This program is free software; you can redistribute it and/or | 
 | 8 |  * modify it under the terms of the GNU General Public License | 
 | 9 |  * as published by the Free Software Foundation; version 2 | 
 | 10 |  * of the License. | 
 | 11 |  */ | 
 | 12 |  | 
 | 13 |  | 
 | 14 | /* | 
 | 15 |  | 
 | 16 | Goals and Theory of Operation | 
 | 17 |  | 
 | 18 | The primary goal of this feature is to reduce the kernel boot time, | 
 | 19 | by doing various independent hardware delays and discovery operations | 
 | 20 | decoupled and not strictly serialized. | 
 | 21 |  | 
 | 22 | More specifically, the asynchronous function call concept allows | 
 | 23 | certain operations (primarily during system boot) to happen | 
 | 24 | asynchronously, out of order, while these operations still | 
 | 25 | have their externally visible parts happen sequentially and in-order. | 
 | 26 | (not unlike how out-of-order CPUs retire their instructions in order) | 
 | 27 |  | 
 | 28 | Key to the asynchronous function call implementation is the concept of | 
 | 29 | a "sequence cookie" (which, although it has an abstracted type, can be | 
 | 30 | thought of as a monotonically incrementing number). | 
 | 31 |  | 
 | 32 | The async core will assign each scheduled event such a sequence cookie and | 
 | 33 | pass this to the called functions. | 
 | 34 |  | 
 | 35 | The asynchronously called function should before doing a globally visible | 
 | 36 | operation, such as registering device numbers, call the | 
 | 37 | async_synchronize_cookie() function and pass in its own cookie. The | 
 | 38 | async_synchronize_cookie() function will make sure that all asynchronous | 
 | 39 | operations that were scheduled prior to the operation corresponding with the | 
 | 40 | cookie have completed. | 
 | 41 |  | 
 | 42 | Subsystem/driver initialization code that scheduled asynchronous probe | 
 | 43 | functions, but which shares global resources with other drivers/subsystems | 
 | 44 | that do not use the asynchronous call feature, need to do a full | 
 | 45 | synchronization with the async_synchronize_full() function, before returning | 
 | 46 | from their init function. This is to maintain strict ordering between the | 
 | 47 | asynchronous and synchronous parts of the kernel. | 
 | 48 |  | 
 | 49 | */ | 
 | 50 |  | 
 | 51 | #include <linux/async.h> | 
| Paul McQuade | 84c1502 | 2011-05-31 20:51:55 +0100 | [diff] [blame] | 52 | #include <linux/atomic.h> | 
 | 53 | #include <linux/ktime.h> | 
| Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 54 | #include <linux/export.h> | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 55 | #include <linux/wait.h> | 
 | 56 | #include <linux/sched.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 57 | #include <linux/slab.h> | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 58 | #include <linux/workqueue.h> | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 59 |  | 
| Tejun Heo | 84b233a | 2013-01-18 14:05:56 -0800 | [diff] [blame] | 60 | #include "workqueue_internal.h" | 
 | 61 |  | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 62 | static async_cookie_t next_cookie = 1; | 
 | 63 |  | 
| Tejun Heo | c68eee1 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 64 | #define MAX_WORK		32768 | 
 | 65 | #define ASYNC_COOKIE_MAX	ULLONG_MAX	/* infinity cookie */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 66 |  | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 67 | static LIST_HEAD(async_global_pending);	/* pending from all registered doms */ | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 68 | static ASYNC_DOMAIN(async_dfl_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 69 | static DEFINE_SPINLOCK(async_lock); | 
 | 70 |  | 
 | 71 | struct async_entry { | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 72 | 	struct list_head	domain_list; | 
 | 73 | 	struct list_head	global_list; | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 74 | 	struct work_struct	work; | 
 | 75 | 	async_cookie_t		cookie; | 
 | 76 | 	async_func_ptr		*func; | 
 | 77 | 	void			*data; | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 78 | 	struct async_domain	*domain; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 79 | }; | 
 | 80 |  | 
 | 81 | static DECLARE_WAIT_QUEUE_HEAD(async_done); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 82 |  | 
 | 83 | static atomic_t entry_count; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 84 |  | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 85 | static async_cookie_t lowest_in_progress(struct async_domain *domain) | 
| Arjan van de Ven | 37a76bd | 2009-01-11 15:35:01 +0000 | [diff] [blame] | 86 | { | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 87 | 	struct async_entry *first = NULL; | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 88 | 	async_cookie_t ret = ASYNC_COOKIE_MAX; | 
| Arjan van de Ven | 37a76bd | 2009-01-11 15:35:01 +0000 | [diff] [blame] | 89 | 	unsigned long flags; | 
| Arjan van de Ven | 37a76bd | 2009-01-11 15:35:01 +0000 | [diff] [blame] | 90 |  | 
 | 91 | 	spin_lock_irqsave(&async_lock, flags); | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 92 |  | 
 | 93 | 	if (domain) { | 
 | 94 | 		if (!list_empty(&domain->pending)) | 
 | 95 | 			first = list_first_entry(&domain->pending, | 
 | 96 | 					struct async_entry, domain_list); | 
 | 97 | 	} else { | 
 | 98 | 		if (!list_empty(&async_global_pending)) | 
 | 99 | 			first = list_first_entry(&async_global_pending, | 
 | 100 | 					struct async_entry, global_list); | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 101 | 	} | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 102 |  | 
 | 103 | 	if (first) | 
 | 104 | 		ret = first->cookie; | 
 | 105 |  | 
| Arjan van de Ven | 37a76bd | 2009-01-11 15:35:01 +0000 | [diff] [blame] | 106 | 	spin_unlock_irqrestore(&async_lock, flags); | 
 | 107 | 	return ret; | 
 | 108 | } | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 109 |  | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 110 | /* | 
 | 111 |  * pick the first pending entry and run it | 
 | 112 |  */ | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 113 | static void async_run_entry_fn(struct work_struct *work) | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 114 | { | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 115 | 	struct async_entry *entry = | 
 | 116 | 		container_of(work, struct async_entry, work); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 117 | 	unsigned long flags; | 
| Vitaliy Ivanov | 124ff4e | 2011-07-07 14:10:40 +0300 | [diff] [blame] | 118 | 	ktime_t uninitialized_var(calltime), delta, rettime; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 119 |  | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 120 | 	/* 1) run (and print duration) */ | 
| Arjan van de Ven | ad160d2 | 2009-01-07 09:28:53 -0800 | [diff] [blame] | 121 | 	if (initcall_debug && system_state == SYSTEM_BOOTING) { | 
| Paul McQuade | 84c1502 | 2011-05-31 20:51:55 +0100 | [diff] [blame] | 122 | 		printk(KERN_DEBUG "calling  %lli_%pF @ %i\n", | 
 | 123 | 			(long long)entry->cookie, | 
| Andrew Morton | 58763a2 | 2009-02-04 15:11:58 -0800 | [diff] [blame] | 124 | 			entry->func, task_pid_nr(current)); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 125 | 		calltime = ktime_get(); | 
 | 126 | 	} | 
 | 127 | 	entry->func(entry->data, entry->cookie); | 
| Arjan van de Ven | ad160d2 | 2009-01-07 09:28:53 -0800 | [diff] [blame] | 128 | 	if (initcall_debug && system_state == SYSTEM_BOOTING) { | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 129 | 		rettime = ktime_get(); | 
 | 130 | 		delta = ktime_sub(rettime, calltime); | 
| Paul McQuade | 84c1502 | 2011-05-31 20:51:55 +0100 | [diff] [blame] | 131 | 		printk(KERN_DEBUG "initcall %lli_%pF returned 0 after %lld usecs\n", | 
| Andrew Morton | 58763a2 | 2009-02-04 15:11:58 -0800 | [diff] [blame] | 132 | 			(long long)entry->cookie, | 
 | 133 | 			entry->func, | 
 | 134 | 			(long long)ktime_to_ns(delta) >> 10); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 135 | 	} | 
 | 136 |  | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 137 | 	/* 2) remove self from the pending queues */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 138 | 	spin_lock_irqsave(&async_lock, flags); | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 139 | 	list_del_init(&entry->domain_list); | 
 | 140 | 	list_del_init(&entry->global_list); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 141 |  | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 142 | 	/* 3) free the entry */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 143 | 	kfree(entry); | 
 | 144 | 	atomic_dec(&entry_count); | 
 | 145 |  | 
 | 146 | 	spin_unlock_irqrestore(&async_lock, flags); | 
 | 147 |  | 
| Tejun Heo | 5272279 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 148 | 	/* 4) wake up any waiters */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 149 | 	wake_up(&async_done); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 150 | } | 
 | 151 |  | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 152 | static async_cookie_t __async_schedule(async_func_ptr *ptr, void *data, struct async_domain *domain) | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 153 | { | 
 | 154 | 	struct async_entry *entry; | 
 | 155 | 	unsigned long flags; | 
 | 156 | 	async_cookie_t newcookie; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 157 |  | 
 | 158 | 	/* allow irq-off callers */ | 
 | 159 | 	entry = kzalloc(sizeof(struct async_entry), GFP_ATOMIC); | 
 | 160 |  | 
 | 161 | 	/* | 
 | 162 | 	 * If we're out of memory or if there's too much work | 
 | 163 | 	 * pending already, we execute synchronously. | 
 | 164 | 	 */ | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 165 | 	if (!entry || atomic_read(&entry_count) > MAX_WORK) { | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 166 | 		kfree(entry); | 
 | 167 | 		spin_lock_irqsave(&async_lock, flags); | 
 | 168 | 		newcookie = next_cookie++; | 
 | 169 | 		spin_unlock_irqrestore(&async_lock, flags); | 
 | 170 |  | 
 | 171 | 		/* low on memory.. run synchronously */ | 
 | 172 | 		ptr(data, newcookie); | 
 | 173 | 		return newcookie; | 
 | 174 | 	} | 
| James Hogan | a0327ff | 2013-01-25 10:13:59 +0000 | [diff] [blame] | 175 | 	INIT_LIST_HEAD(&entry->domain_list); | 
 | 176 | 	INIT_LIST_HEAD(&entry->global_list); | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 177 | 	INIT_WORK(&entry->work, async_run_entry_fn); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 178 | 	entry->func = ptr; | 
 | 179 | 	entry->data = data; | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 180 | 	entry->domain = domain; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 181 |  | 
 | 182 | 	spin_lock_irqsave(&async_lock, flags); | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 183 |  | 
 | 184 | 	/* allocate cookie and queue */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 185 | 	newcookie = entry->cookie = next_cookie++; | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 186 |  | 
 | 187 | 	list_add_tail(&entry->domain_list, &domain->pending); | 
 | 188 | 	if (domain->registered) | 
 | 189 | 		list_add_tail(&entry->global_list, &async_global_pending); | 
 | 190 |  | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 191 | 	atomic_inc(&entry_count); | 
 | 192 | 	spin_unlock_irqrestore(&async_lock, flags); | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 193 |  | 
| Tejun Heo | 774a122 | 2013-01-15 18:52:51 -0800 | [diff] [blame] | 194 | 	/* mark that this task has queued an async job, used by module init */ | 
 | 195 | 	current->flags |= PF_USED_ASYNC; | 
 | 196 |  | 
| Tejun Heo | 083b804 | 2010-07-02 10:03:52 +0200 | [diff] [blame] | 197 | 	/* schedule for execution */ | 
 | 198 | 	queue_work(system_unbound_wq, &entry->work); | 
 | 199 |  | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 200 | 	return newcookie; | 
 | 201 | } | 
 | 202 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 203 | /** | 
 | 204 |  * async_schedule - schedule a function for asynchronous execution | 
 | 205 |  * @ptr: function to execute asynchronously | 
 | 206 |  * @data: data pointer to pass to the function | 
 | 207 |  * | 
 | 208 |  * Returns an async_cookie_t that may be used for checkpointing later. | 
 | 209 |  * Note: This function may be called from atomic or non-atomic contexts. | 
 | 210 |  */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 211 | async_cookie_t async_schedule(async_func_ptr *ptr, void *data) | 
 | 212 | { | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 213 | 	return __async_schedule(ptr, data, &async_dfl_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 214 | } | 
 | 215 | EXPORT_SYMBOL_GPL(async_schedule); | 
 | 216 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 217 | /** | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 218 |  * async_schedule_domain - schedule a function for asynchronous execution within a certain domain | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 219 |  * @ptr: function to execute asynchronously | 
 | 220 |  * @data: data pointer to pass to the function | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 221 |  * @domain: the domain | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 222 |  * | 
 | 223 |  * Returns an async_cookie_t that may be used for checkpointing later. | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 224 |  * @domain may be used in the async_synchronize_*_domain() functions to | 
 | 225 |  * wait within a certain synchronization domain rather than globally.  A | 
 | 226 |  * synchronization domain is specified via @domain.  Note: This function | 
 | 227 |  * may be called from atomic or non-atomic contexts. | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 228 |  */ | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 229 | async_cookie_t async_schedule_domain(async_func_ptr *ptr, void *data, | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 230 | 				     struct async_domain *domain) | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 231 | { | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 232 | 	return __async_schedule(ptr, data, domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 233 | } | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 234 | EXPORT_SYMBOL_GPL(async_schedule_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 235 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 236 | /** | 
 | 237 |  * async_synchronize_full - synchronize all asynchronous function calls | 
 | 238 |  * | 
 | 239 |  * This function waits until all asynchronous function calls have been done. | 
 | 240 |  */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 241 | void async_synchronize_full(void) | 
 | 242 | { | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 243 | 	async_synchronize_full_domain(NULL); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 244 | } | 
 | 245 | EXPORT_SYMBOL_GPL(async_synchronize_full); | 
 | 246 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 247 | /** | 
| Dan Williams | a468348 | 2012-07-09 19:33:30 -0700 | [diff] [blame] | 248 |  * async_unregister_domain - ensure no more anonymous waiters on this domain | 
 | 249 |  * @domain: idle domain to flush out of any async_synchronize_full instances | 
 | 250 |  * | 
 | 251 |  * async_synchronize_{cookie|full}_domain() are not flushed since callers | 
 | 252 |  * of these routines should know the lifetime of @domain | 
 | 253 |  * | 
 | 254 |  * Prefer ASYNC_DOMAIN_EXCLUSIVE() declarations over flushing | 
 | 255 |  */ | 
 | 256 | void async_unregister_domain(struct async_domain *domain) | 
 | 257 | { | 
| Dan Williams | a468348 | 2012-07-09 19:33:30 -0700 | [diff] [blame] | 258 | 	spin_lock_irq(&async_lock); | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 259 | 	WARN_ON(!domain->registered || !list_empty(&domain->pending)); | 
| Dan Williams | a468348 | 2012-07-09 19:33:30 -0700 | [diff] [blame] | 260 | 	domain->registered = 0; | 
 | 261 | 	spin_unlock_irq(&async_lock); | 
| Dan Williams | a468348 | 2012-07-09 19:33:30 -0700 | [diff] [blame] | 262 | } | 
 | 263 | EXPORT_SYMBOL_GPL(async_unregister_domain); | 
 | 264 |  | 
 | 265 | /** | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 266 |  * async_synchronize_full_domain - synchronize all asynchronous function within a certain domain | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 267 |  * @domain: the domain to synchronize | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 268 |  * | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 269 |  * This function waits until all asynchronous function calls for the | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 270 |  * synchronization domain specified by @domain have been done. | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 271 |  */ | 
| Dan Williams | 2955b47 | 2012-07-09 19:33:25 -0700 | [diff] [blame] | 272 | void async_synchronize_full_domain(struct async_domain *domain) | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 273 | { | 
| Tejun Heo | c68eee1 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 274 | 	async_synchronize_cookie_domain(ASYNC_COOKIE_MAX, domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 275 | } | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 276 | EXPORT_SYMBOL_GPL(async_synchronize_full_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 277 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 278 | /** | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 279 |  * async_synchronize_cookie_domain - synchronize asynchronous function calls within a certain domain with cookie checkpointing | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 280 |  * @cookie: async_cookie_t to use as checkpoint | 
| Tejun Heo | 9fdb04c | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 281 |  * @domain: the domain to synchronize (%NULL for all registered domains) | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 282 |  * | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 283 |  * This function waits until all asynchronous function calls for the | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 284 |  * synchronization domain specified by @domain submitted prior to @cookie | 
 | 285 |  * have been done. | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 286 |  */ | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 287 | void async_synchronize_cookie_domain(async_cookie_t cookie, struct async_domain *domain) | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 288 | { | 
| Vitaliy Ivanov | 124ff4e | 2011-07-07 14:10:40 +0300 | [diff] [blame] | 289 | 	ktime_t uninitialized_var(starttime), delta, endtime; | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 290 |  | 
| Arjan van de Ven | ad160d2 | 2009-01-07 09:28:53 -0800 | [diff] [blame] | 291 | 	if (initcall_debug && system_state == SYSTEM_BOOTING) { | 
| Paul McQuade | 84c1502 | 2011-05-31 20:51:55 +0100 | [diff] [blame] | 292 | 		printk(KERN_DEBUG "async_waiting @ %i\n", task_pid_nr(current)); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 293 | 		starttime = ktime_get(); | 
 | 294 | 	} | 
 | 295 |  | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 296 | 	wait_event(async_done, lowest_in_progress(domain) >= cookie); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 297 |  | 
| Arjan van de Ven | ad160d2 | 2009-01-07 09:28:53 -0800 | [diff] [blame] | 298 | 	if (initcall_debug && system_state == SYSTEM_BOOTING) { | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 299 | 		endtime = ktime_get(); | 
 | 300 | 		delta = ktime_sub(endtime, starttime); | 
 | 301 |  | 
| Paul McQuade | 84c1502 | 2011-05-31 20:51:55 +0100 | [diff] [blame] | 302 | 		printk(KERN_DEBUG "async_continuing @ %i after %lli usec\n", | 
| Andrew Morton | 58763a2 | 2009-02-04 15:11:58 -0800 | [diff] [blame] | 303 | 			task_pid_nr(current), | 
 | 304 | 			(long long)ktime_to_ns(delta) >> 10); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 305 | 	} | 
 | 306 | } | 
| Cornelia Huck | 766ccb9 | 2009-01-20 15:31:31 +0100 | [diff] [blame] | 307 | EXPORT_SYMBOL_GPL(async_synchronize_cookie_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 308 |  | 
| Cornelia Huck | f30d5b3 | 2009-01-19 13:45:33 +0100 | [diff] [blame] | 309 | /** | 
 | 310 |  * async_synchronize_cookie - synchronize asynchronous function calls with cookie checkpointing | 
 | 311 |  * @cookie: async_cookie_t to use as checkpoint | 
 | 312 |  * | 
 | 313 |  * This function waits until all asynchronous function calls prior to @cookie | 
 | 314 |  * have been done. | 
 | 315 |  */ | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 316 | void async_synchronize_cookie(async_cookie_t cookie) | 
 | 317 | { | 
| Tejun Heo | 8723d50 | 2013-01-23 09:32:30 -0800 | [diff] [blame] | 318 | 	async_synchronize_cookie_domain(cookie, &async_dfl_domain); | 
| Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 319 | } | 
 | 320 | EXPORT_SYMBOL_GPL(async_synchronize_cookie); | 
| Tejun Heo | 84b233a | 2013-01-18 14:05:56 -0800 | [diff] [blame] | 321 |  | 
 | 322 | /** | 
 | 323 |  * current_is_async - is %current an async worker task? | 
 | 324 |  * | 
 | 325 |  * Returns %true if %current is an async worker task. | 
 | 326 |  */ | 
 | 327 | bool current_is_async(void) | 
 | 328 | { | 
 | 329 | 	struct worker *worker = current_wq_worker(); | 
 | 330 |  | 
 | 331 | 	return worker && worker->current_func == async_run_entry_fn; | 
 | 332 | } |