linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH wq/for-next 1/2] workqueue: replace open-coded work_pending()
@ 2021-06-02 11:16 Julian Wiedmann
  2021-06-02 11:16 ` [PATCH wq/for-next 2/2] workqueue: clean up for_each_pwq()'s documentation Julian Wiedmann
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Julian Wiedmann @ 2021-06-02 11:16 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Julian Wiedmann, Lai Jiangshan, linux-kernel

Use the right helper to check whether a work item is currently pending.

Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
---
 kernel/workqueue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 50142fc08902..8a700ccfa313 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -3209,7 +3209,7 @@ EXPORT_SYMBOL(flush_delayed_work);
  */
 bool flush_rcu_work(struct rcu_work *rwork)
 {
-	if (test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&rwork->work))) {
+	if (work_pending(&rwork->work)) {
 		rcu_barrier();
 		flush_work(&rwork->work);
 		return true;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-06-04 14:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-02 11:16 [PATCH wq/for-next 1/2] workqueue: replace open-coded work_pending() Julian Wiedmann
2021-06-02 11:16 ` [PATCH wq/for-next 2/2] workqueue: clean up for_each_pwq()'s documentation Julian Wiedmann
2021-06-04 14:53   ` Tejun Heo
2021-06-03  2:20 ` [PATCH wq/for-next 1/2] workqueue: replace open-coded work_pending() Lai Jiangshan
2021-06-04 14:53 ` Tejun Heo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).