linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] kernel/kthread.c: kthread_worker: add work status check in timer_fn
@ 2020-09-25  5:07 qiang.zhang
  2020-09-25  9:30 ` Petr Mladek
       [not found] ` <20200925123821.18556-1-hdanton@sina.com>
  0 siblings, 2 replies; 3+ messages in thread
From: qiang.zhang @ 2020-09-25  5:07 UTC (permalink / raw)
  To: tj, pmladek; +Cc: akpm, linux-kernel

From: Zqiang <qiang.zhang@windriver.com>

When queue delayed work to worker, at some point after that the timer_fn
will be call, add work to worker's work_list, at this time, the work may
be cancel, so add "work->canceling" check current work status.

Signed-off-by: Zqiang <qiang.zhang@windriver.com>
---
 v1->v2:
 Change description information.

 kernel/kthread.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/kthread.c b/kernel/kthread.c
index 3edaa380dc7b..85a2c9b32049 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -897,7 +897,8 @@ void kthread_delayed_work_timer_fn(struct timer_list *t)
 	/* Move the work from worker->delayed_work_list. */
 	WARN_ON_ONCE(list_empty(&work->node));
 	list_del_init(&work->node);
-	kthread_insert_work(worker, work, &worker->work_list);
+	if (!work->canceling)
+		kthread_insert_work(worker, work, &worker->work_list);
 
 	raw_spin_unlock_irqrestore(&worker->lock, flags);
 }
-- 
2.17.1


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

end of thread, other threads:[~2020-09-25 13:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-25  5:07 [PATCH v2] kernel/kthread.c: kthread_worker: add work status check in timer_fn qiang.zhang
2020-09-25  9:30 ` Petr Mladek
     [not found] ` <20200925123821.18556-1-hdanton@sina.com>
2020-09-25 13:16   ` Petr Mladek

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).