public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cgroup: Properly init nr_tasks in cgroup_taskset
@ 2017-09-14 20:45 Waiman Long
  2017-09-15 15:47 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Waiman Long @ 2017-09-14 20:45 UTC (permalink / raw)
  To: Tejun Heo, Li Zefan; +Cc: cgroups, linux-kernel, Waiman Long

Commit 610467270fb3 ("cgroup: don't call migration methods if there
are no tasks to migrate") introduces a new field nr_tasks to the
cgroup_taskset structure for keeping track of the number of tasks
contained in the structure.  The initial value of this field, however,
is not guaranteed to be 0 as all the cgroup_taskset structures are
allocated from stack.  Therefore, we need to explicitly initilized
it in the CGROUP_TASKSET_INIT() macro for the new code to behave
correctly.

Signed-off-by: Waiman Long <longman@redhat.com>
---
 kernel/cgroup/cgroup-internal.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/cgroup/cgroup-internal.h b/kernel/cgroup/cgroup-internal.h
index 5151ff2..6b4c04e 100644
--- a/kernel/cgroup/cgroup-internal.h
+++ b/kernel/cgroup/cgroup-internal.h
@@ -76,6 +76,7 @@ struct cgroup_mgctx {
 	.src_csets		= LIST_HEAD_INIT(tset.src_csets),		\
 	.dst_csets		= LIST_HEAD_INIT(tset.dst_csets),		\
 	.csets			= &tset.src_csets,				\
+	.nr_tasks		= 0,						\
 }
 
 #define CGROUP_MGCTX_INIT(name)							\
-- 
1.8.3.1

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

* Re: [PATCH] cgroup: Properly init nr_tasks in cgroup_taskset
  2017-09-14 20:45 [PATCH] cgroup: Properly init nr_tasks in cgroup_taskset Waiman Long
@ 2017-09-15 15:47 ` Tejun Heo
  2017-09-15 18:28   ` Waiman Long
  0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2017-09-15 15:47 UTC (permalink / raw)
  To: Waiman Long; +Cc: Li Zefan, cgroups, linux-kernel

Hello, Waiman.

On Thu, Sep 14, 2017 at 01:45:13PM -0700, Waiman Long wrote:
> Commit 610467270fb3 ("cgroup: don't call migration methods if there
> are no tasks to migrate") introduces a new field nr_tasks to the
> cgroup_taskset structure for keeping track of the number of tasks
> contained in the structure.  The initial value of this field, however,
> is not guaranteed to be 0 as all the cgroup_taskset structures are
> allocated from stack.  Therefore, we need to explicitly initilized
> it in the CGROUP_TASKSET_INIT() macro for the new code to behave
> correctly.
> 
> Signed-off-by: Waiman Long <longman@redhat.com>
> ---
>  kernel/cgroup/cgroup-internal.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/cgroup/cgroup-internal.h b/kernel/cgroup/cgroup-internal.h
> index 5151ff2..6b4c04e 100644
> --- a/kernel/cgroup/cgroup-internal.h
> +++ b/kernel/cgroup/cgroup-internal.h
> @@ -76,6 +76,7 @@ struct cgroup_mgctx {
>  	.src_csets		= LIST_HEAD_INIT(tset.src_csets),		\
>  	.dst_csets		= LIST_HEAD_INIT(tset.dst_csets),		\
>  	.csets			= &tset.src_csets,				\
> +	.nr_tasks		= 0,						\

But it's an initialization macro, which means that the only way these
are used is as a part of whole struct initialization and the compiler
would always set the unspecified fields to zero.

Thanks.

-- 
tejun

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

* Re: [PATCH] cgroup: Properly init nr_tasks in cgroup_taskset
  2017-09-15 15:47 ` Tejun Heo
@ 2017-09-15 18:28   ` Waiman Long
  0 siblings, 0 replies; 3+ messages in thread
From: Waiman Long @ 2017-09-15 18:28 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Li Zefan, cgroups, linux-kernel

On 09/15/2017 08:47 AM, Tejun Heo wrote:
> Hello, Waiman.
>
> On Thu, Sep 14, 2017 at 01:45:13PM -0700, Waiman Long wrote:
>> Commit 610467270fb3 ("cgroup: don't call migration methods if there
>> are no tasks to migrate") introduces a new field nr_tasks to the
>> cgroup_taskset structure for keeping track of the number of tasks
>> contained in the structure.  The initial value of this field, however,
>> is not guaranteed to be 0 as all the cgroup_taskset structures are
>> allocated from stack.  Therefore, we need to explicitly initilized
>> it in the CGROUP_TASKSET_INIT() macro for the new code to behave
>> correctly.
>>
>> Signed-off-by: Waiman Long <longman@redhat.com>
>> ---
>>  kernel/cgroup/cgroup-internal.h | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/kernel/cgroup/cgroup-internal.h b/kernel/cgroup/cgroup-internal.h
>> index 5151ff2..6b4c04e 100644
>> --- a/kernel/cgroup/cgroup-internal.h
>> +++ b/kernel/cgroup/cgroup-internal.h
>> @@ -76,6 +76,7 @@ struct cgroup_mgctx {
>>  	.src_csets		= LIST_HEAD_INIT(tset.src_csets),		\
>>  	.dst_csets		= LIST_HEAD_INIT(tset.dst_csets),		\
>>  	.csets			= &tset.src_csets,	Y			\
>> +	.nr_tasks		= 0,						\
> But it's an initialization macro, which means that the only way thhese
> are used is as a part of whole struct initialization and the compiler
> would always set the unspecified fields to zero.
>
> Thanks.
>
You are right. I checked the assembly code and it did initialize the
other fields of the structure to 0. So my fix is bogus.

I sent this patch out because our QE people were still seeing the same
panic in PPC machines even with your patch applied. So I mistakenly
thought maybe the structure initialization wasn't complete. I will have
to further into why this was still happening.

Sorry for bothering you.

Cheers,
Longman

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

end of thread, other threads:[~2017-09-15 18:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-14 20:45 [PATCH] cgroup: Properly init nr_tasks in cgroup_taskset Waiman Long
2017-09-15 15:47 ` Tejun Heo
2017-09-15 18:28   ` Waiman Long

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox