diff options
author | Tejun Heo <tj@kernel.org> | 2013-01-18 17:05:56 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2013-01-18 17:05:56 -0500 |
commit | 84b233adcca3cacd5cfa8013a5feda7a3db4a9af (patch) | |
tree | 3d1f4a7f5f1d27dc08bb661691fd1470acf497a5 /kernel/async.c | |
parent | 2eaebdb33e1911c0cf3d44fd3596c42c6f502fab (diff) |
workqueue: implement current_is_async()
This function queries whether %current is an async worker executing an
async item. This will be used to implement warning on synchronous
request_module() from async workers.
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/async.c')
-rw-r--r-- | kernel/async.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/async.c b/kernel/async.c index 9d3118384858..d9bf2a9b5cee 100644 --- a/kernel/async.c +++ b/kernel/async.c | |||
@@ -57,6 +57,8 @@ asynchronous and synchronous parts of the kernel. | |||
57 | #include <linux/slab.h> | 57 | #include <linux/slab.h> |
58 | #include <linux/workqueue.h> | 58 | #include <linux/workqueue.h> |
59 | 59 | ||
60 | #include "workqueue_internal.h" | ||
61 | |||
60 | static async_cookie_t next_cookie = 1; | 62 | static async_cookie_t next_cookie = 1; |
61 | 63 | ||
62 | #define MAX_WORK 32768 | 64 | #define MAX_WORK 32768 |
@@ -337,3 +339,15 @@ void async_synchronize_cookie(async_cookie_t cookie) | |||
337 | async_synchronize_cookie_domain(cookie, &async_running); | 339 | async_synchronize_cookie_domain(cookie, &async_running); |
338 | } | 340 | } |
339 | EXPORT_SYMBOL_GPL(async_synchronize_cookie); | 341 | EXPORT_SYMBOL_GPL(async_synchronize_cookie); |
342 | |||
343 | /** | ||
344 | * current_is_async - is %current an async worker task? | ||
345 | * | ||
346 | * Returns %true if %current is an async worker task. | ||
347 | */ | ||
348 | bool current_is_async(void) | ||
349 | { | ||
350 | struct worker *worker = current_wq_worker(); | ||
351 | |||
352 | return worker && worker->current_func == async_run_entry_fn; | ||
353 | } | ||