[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <395617ec-ef92-c20f-d5c1-550b47a07f6d@huawei.com>
Date: Thu, 26 Sep 2019 16:40:52 +0800
From: Yunfeng Ye <yeyunfeng@...wei.com>
To: Alexander Duyck <alexander.h.duyck@...ux.intel.com>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
<bvanassche@....org>, <bhelgaas@...gle.com>, <dsterba@...e.com>,
"tglx@...utronix.de" <tglx@...utronix.de>,
<sakari.ailus@...ux.intel.com>
CC: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: [PATCH] async: Using current_work() to implement current_is_async()
current_is_async() can be implemented using current_work(), it's better
not to be aware of the workqueue's internal information.
Signed-off-by: Yunfeng Ye <yeyunfeng@...wei.com>
---
kernel/async.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/kernel/async.c b/kernel/async.c
index 1de270d..a849f98 100644
--- a/kernel/async.c
+++ b/kernel/async.c
@@ -53,8 +53,6 @@ asynchronous and synchronous parts of the kernel.
#include <linux/slab.h>
#include <linux/workqueue.h>
-#include "workqueue_internal.h"
-
static async_cookie_t next_cookie = 1;
#define MAX_WORK 32768
@@ -327,8 +325,8 @@ EXPORT_SYMBOL_GPL(async_synchronize_cookie);
*/
bool current_is_async(void)
{
- struct worker *worker = current_wq_worker();
+ struct work_struct *work = current_work();
- return worker && worker->current_func == async_run_entry_fn;
+ return work && work->func == async_run_entry_fn;
}
EXPORT_SYMBOL_GPL(current_is_async);
--
2.7.4
Powered by blists - more mailing lists