Re: [PATCH v2 1/3] sched: don't repeat the initialization in sched_init()

2013-06-05 Thread Michael Wang
On 06/05/2013 07:06 PM, Peter Zijlstra wrote: > On Wed, Jun 05, 2013 at 10:24:18AM +0800, Michael Wang wrote: >> v2: >> Move comments back before init_tg_cfs_entry(). (Thanks for the notify >> from pjt) >> >> In sched_init(), there is no need to initialize 'root_task_group.shares' and >> 'roo

Re: [PATCH v2 1/3] sched: don't repeat the initialization in sched_init()

2013-06-05 Thread Peter Zijlstra
On Wed, Jun 05, 2013 at 10:24:18AM +0800, Michael Wang wrote: > v2: > Move comments back before init_tg_cfs_entry(). (Thanks for the notify > from pjt) > > In sched_init(), there is no need to initialize 'root_task_group.shares' and > 'root_task_group.cfs_bandwidth' repeatedly. > > CC: Pau

[PATCH v2 1/3] sched: don't repeat the initialization in sched_init()

2013-06-04 Thread Michael Wang
v2: Move comments back before init_tg_cfs_entry(). (Thanks for the notify from pjt) In sched_init(), there is no need to initialize 'root_task_group.shares' and 'root_task_group.cfs_bandwidth' repeatedly. CC: Paul Tuner CC: Ingo Molnar CC: Peter Zijlstra Signed-off-by: Michael Wang -