2015-06-01 10:06:07

by yalin wang

[permalink] [raw]
Subject: Fwd: [RFC] make kthread_worker_fn to be freezable

I notice that kthread_worker_fn() call try_to_freeze() function,
but it don't make itself to be a freezable kthread,
kthread default behavior is not freezable, we should change it if
want try_to_freeze() work correctly.

Signed-off-by: yalin wang <[email protected]>
---
kernel/kthread.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/kernel/kthread.c b/kernel/kthread.c
index 10e489c..b20a21d 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -550,6 +550,7 @@ int kthread_worker_fn(void *worker_ptr)

WARN_ON(worker->task);
worker->task = current;
+ set_freezable();
repeat:
set_current_state(TASK_INTERRUPTIBLE); /* mb paired w/ kthread_stop */

--
1.9.1


2015-06-01 11:40:29

by Tejun Heo

[permalink] [raw]
Subject: Re: Fwd: [RFC] make kthread_worker_fn to be freezable

Hello,

On Mon, Jun 01, 2015 at 06:05:58PM +0800, yalin wang wrote:
> I notice that kthread_worker_fn() call try_to_freeze() function,
> but it don't make itself to be a freezable kthread,
> kthread default behavior is not freezable, we should change it if
> want try_to_freeze() work correctly.
>
> Signed-off-by: yalin wang <[email protected]>

Whether a kthread worker should be able to freeze or not is to be
determined by the owner of the specific kthread. If the kthread is
marked freezable, kthread_worker will freeze. If not, it won't.

Nacked-by: Tejun Heo <[email protected]>

Thanks.

--
tejun

2015-06-02 03:13:51

by yalin wang

[permalink] [raw]
Subject: Re: Fwd: [RFC] make kthread_worker_fn to be freezable

2015-06-01 19:40 GMT+08:00 Tejun Heo <[email protected]>:
> Hello,
>
> On Mon, Jun 01, 2015 at 06:05:58PM +0800, yalin wang wrote:
>> I notice that kthread_worker_fn() call try_to_freeze() function,
>> but it don't make itself to be a freezable kthread,
>> kthread default behavior is not freezable, we should change it if
>> want try_to_freeze() work correctly.
>>
>> Signed-off-by: yalin wang <[email protected]>
>
> Whether a kthread worker should be able to freeze or not is to be
> determined by the owner of the specific kthread. If the kthread is
> marked freezable, kthread_worker will freeze. If not, it won't.
>
this means i need create kthread like this :

struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
&worker, "nvme%d", dev->instance);
kworker_task->flags &= ~PF_NOFREEZE;
is it safe to do like this ?

i don't see an API to set other thread to be freezable .
only set_freezable() , which set the current thread to be freezable .

am i missing something ?
Thanks

2015-06-03 05:20:27

by Tejun Heo

[permalink] [raw]
Subject: Re: Fwd: [RFC] make kthread_worker_fn to be freezable

On Tue, Jun 02, 2015 at 11:13:44AM +0800, yalin wang wrote:
> this means i need create kthread like this :
>
> struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
> &worker, "nvme%d", dev->instance);
> kworker_task->flags &= ~PF_NOFREEZE;
> is it safe to do like this ?

It's not.

> i don't see an API to set other thread to be freezable .
> only set_freezable() , which set the current thread to be freezable .

But you can create a wrapper kthread function which sets freezable and
calls kthread_worker_fn().

Thanks.

--
tejun

2015-06-04 08:40:34

by yalin wang

[permalink] [raw]
Subject: Re: Fwd: [RFC] make kthread_worker_fn to be freezable

2015-06-03 13:20 GMT+08:00 Tejun Heo <[email protected]>:
> On Tue, Jun 02, 2015 at 11:13:44AM +0800, yalin wang wrote:
>> this means i need create kthread like this :
>>
>> struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
>> &worker, "nvme%d", dev->instance);
>> kworker_task->flags &= ~PF_NOFREEZE;
>> is it safe to do like this ?
>
> It's not.
>
>> i don't see an API to set other thread to be freezable .
>> only set_freezable() , which set the current thread to be freezable .
>
> But you can create a wrapper kthread function which sets freezable and
> calls kthread_worker_fn().
>
oh, got it, i see your meaning,
Thanks a lot !