From: Lukas Wunner Date: Thu, 19 Nov 2015 15:31:11 +0000 (+0100) Subject: async: export current_is_async() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=581da2cab557fa6e8a954c148c487eb7e0658979;p=linux-beck.git async: export current_is_async() Introduced by 84b233adcca3 ("workqueue: implement current_is_async()"). Cc: Tejun Heo Signed-off-by: Lukas Wunner Acked-by: Tejun Heo Signed-off-by: Daniel Vetter --- diff --git a/kernel/async.c b/kernel/async.c index 4c3773c0bf63..d2edd6efec56 100644 --- a/kernel/async.c +++ b/kernel/async.c @@ -326,3 +326,4 @@ bool current_is_async(void) return worker && worker->current_func == async_run_entry_fn; } +EXPORT_SYMBOL_GPL(current_is_async);