2020-07-03 06:33:22

by Zhang, Qiang

[permalink] [raw]
Subject: [PATCH] kthread: Don't cancel a work that is being cancelled

From: Zhang Qiang <[email protected]>

When canceling a work, if it is found that the work is in
the cancelling state, we should directly exit the cancelled
operation.

Signed-off-by: Zhang Qiang <[email protected]>
---
kernel/kthread.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/kernel/kthread.c b/kernel/kthread.c
index bfbfa481be3a..1166f2043e67 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -1103,6 +1103,9 @@ static bool __kthread_cancel_work_sync(struct kthread_work *work, bool is_dwork)
/* Work must not be used with >1 worker, see kthread_queue_work(). */
WARN_ON_ONCE(work->worker != worker);

+ if (work->canceling)
+ goto out_fast;
+
ret = __kthread_cancel_work(work, is_dwork, &flags);

if (worker->current_work != work)
--
2.24.1


2020-07-03 07:31:39

by Petr Mladek

[permalink] [raw]
Subject: Re: [PATCH] kthread: Don't cancel a work that is being cancelled

On Thu 2020-07-02 12:43:24, [email protected] wrote:
> From: Zhang Qiang <[email protected]>
>
> When canceling a work, if it is found that the work is in
> the cancelling state, we should directly exit the cancelled
> operation.

No, the function guarantees that the work is not longer running
when it returns. This is why it has the suffix "_sync" in the name.

We would need to add kthread_cancel_work() without the "_sync"
wrappers that would not wait for the work in progress. But it
might be dangerous. The API users usually want to make sure
that the work in not longer running to avoid races.

What is the use case for the non-sync behavior, please?

Best Regards,
Petr

2020-07-03 08:58:33

by Zhang, Qiang

[permalink] [raw]
Subject: 回复: [PATCH] kthread: Don't cancel a work th at is being cancelled

Thank you for your advice, if add kthread_cancel_work() without the "_sync"
it is be dangerous, But I think it is unnecessary to cancel work which is be canceling.
________________________________________
??????: [email protected] <[email protected]> ???? Petr Mladek <[email protected]>
????ʱ??: 2020??7??3?? 15:28
?ռ???: Zhang, Qiang
????: [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]
????: Re: [PATCH] kthread: Don't cancel a work that is being cancelled

On Thu 2020-07-02 12:43:24, [email protected] wrote:
> From: Zhang Qiang <[email protected]>
>
> When canceling a work, if it is found that the work is in
> the cancelling state, we should directly exit the cancelled
> operation.

No, the function guarantees that the work is not longer running
when it returns. This is why it has the suffix "_sync" in the name.

We would need to add kthread_cancel_work() without the "_sync"
wrappers that would not wait for the work in progress. But it
might be dangerous. The API users usually want to make sure
that the work in not longer running to avoid races.

What is the use case for the non-sync behavior, please?

Best Regards,
Petr