From: Lukas Wunner Date: Thu, 19 Nov 2015 15:31:11 +0000 (+0100) Subject: async: export current_is_async() X-Git-Tag: v5.15~13124^2~45^2~1081 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=581da2cab557fa6e8a954c148c487eb7e0658979;p=platform%2Fkernel%2Flinux-starfive.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 4c3773c..d2edd6e 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);