Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1508860
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach |
| Date | 2016-10-26 09:10 +0200 |
| Message-ID | <swqvw-i6-29@gated-at.bofh.it> (permalink) |
| References | <stcfo-1yQ-11@gated-at.bofh.it> <stcfo-1yQ-29@gated-at.bofh.it> <suGXM-5ph-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 21 October 2016 at 14:19, Dietmar Eggemann <dietmar.eggemann@arm.com> wrote:
>
> On 10/17/2016 10:14 AM, Vincent Guittot wrote:
>>
>> When a task moves from/to a cfs_rq, we set a flag which is then used to
>> propagate the change at parent level (sched_entity and cfs_rq) during
>> next update. If the cfs_rq is throttled, the flag will stay pending until
>> the cfs_rw is unthrottled.
>
>
> minor nit:
>
> s/cfs_rw/cfs_rq
yes
>
> [...]
>
>
>> @@ -8704,6 +8867,22 @@ static void detach_task_cfs_rq(struct task_struct *p)
>> update_load_avg(se, 0);
>> detach_entity_load_avg(cfs_rq, se);
>> update_tg_load_avg(cfs_rq, false);
>> +
>> +#ifdef CONFIG_FAIR_GROUP_SCHED
>> + /*
>> + * Propagate the detach across the tg tree to make it visible to the
>> + * root
>> + */
>> + se = se->parent;
>> + for_each_sched_entity(se) {
>> + cfs_rq = cfs_rq_of(se);
>> +
>> + if (cfs_rq_throttled(cfs_rq))
>> + break;
>> +
>> + update_load_avg(se, UPDATE_TG);
>> + }
>> +#endif
>> }
>>
>> static void attach_entity_cfs_rq(struct sched_entity *se)
>> @@ -8722,6 +8901,22 @@ static void attach_entity_cfs_rq(struct sched_entity *se)
>> update_load_avg(se, sched_feat(ATTACH_AGE_LOAD) ? 0 : SKIP_AGE_LOAD);
>> attach_entity_load_avg(cfs_rq, se);
>> update_tg_load_avg(cfs_rq, false);
>> +
>> +#ifdef CONFIG_FAIR_GROUP_SCHED
>> + /*
>> + * Propagate the attach across the tg tree to make it visible to the
>> + * root
>> + */
>> + se = se->parent;
>> + for_each_sched_entity(se) {
>> + cfs_rq = cfs_rq_of(se);
>> +
>> + if (cfs_rq_throttled(cfs_rq))
>> + break;
>> +
>> + update_load_avg(se, UPDATE_TG);
>> + }
>> +#endif
>> }
>
>
> The 'detach across' and 'attach across' in detach_task_cfs_rq() and attach_entity_cfs_rq() do the same so couldn't you not create a function propagate_foo() for it? This would avoid this ifdef as well.
>
> You could further create in your '[PATCH 1/6 v5] sched: factorize attach entity':
>
> detach_entity_cfs_rq() {
> update_load_avg()
> detach_entity_load_avg()
> update_tg_load_avg()
> propagate_load_avg()
> }
>
> and then we would have:
>
> attach_task_cfs_rq() -> attach_entity_cfs_rq() -> propagate_foo()
> detach_task_cfs_rq() -> detach_entity_cfs_rq() -> propagate_foo()
>
> I guess you didn't because it would be only called one time but this symmetric approaches are easier to remember (at least for me).
Yes i haven't created attach_entity_cfs_rq because it would be used only once.
Regarding the creation of a propagate_foo function, i have just
followed a similar skeleton as what is done in
enqueue/dequeue_task_fair
I don't have strong opinion about creating this indirection for code
readability. Others, have you got a preference ?
>
> [...]
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/6 v5] sched: reflect sched_entity move into task_group's load Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-17 11:20 +0200
[PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-17 11:20 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Dietmar Eggemann <dietmar.eggemann@arm.com> - 2016-10-21 14:20 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-26 09:10 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Peter Zijlstra <peterz@infradead.org> - 2016-10-26 13:20 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-26 14:50 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Peter Zijlstra <peterz@infradead.org> - 2016-10-26 13:00 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-26 14:40 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Peter Zijlstra <peterz@infradead.org> - 2016-10-26 16:30 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Vincent Guittot <vincent.guittot@linaro.org> - 2016-10-26 20:50 +0200
Re: [PATCH 4/6 v5] sched: propagate load during synchronous attach/detach Peter Zijlstra <peterz@infradead.org> - 2016-10-26 13:50 +0200
csiph-web