]> git.baikalelectronics.ru Git - kernel.git/commit
sched/fair: Fix stale overloaded status in the busiest group finding logic
authorWanpeng Li <wanpeng.li@linux.intel.com>
Tue, 4 Nov 2014 23:44:50 +0000 (07:44 +0800)
committerIngo Molnar <mingo@kernel.org>
Sun, 16 Nov 2014 09:58:56 +0000 (10:58 +0100)
commitc4f58877eb32d29caa83242978288fa54a895601
tree9d30455e431ebe9d342dbbc1670d4e9bc59ffcd8
parentbf7cd509befba970fc70626d0ab0755208114d70
sched/fair: Fix stale overloaded status in the busiest group finding logic

Commit 829c2791bcf7 ("sched/fair: Make update_sd_pick_busiest() return
'true' on a busier sd") changes groups to be ranked in the order of
overloaded > imbalance > other, and busiest group is picked according
to this order.

sgs->group_capacity_factor is used to check if the group is overloaded.

When the child domain prefers tasks to go to siblings first, the
sgs->group_capacity_factor will be set lower than one in order to
move all the excess tasks away.

However, group overloaded status is not updated when
sgs->group_capacity_factor is set to lower than one, which leads to us
missing to find the busiest group.

This patch fixes it by updating group overloaded status when sg capacity
factor is set to one, in order to find the busiest group accurately.

Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Vincent Guittot <vincent.guittot@linaro.org>
Cc: Kirill Tkhai <ktkhai@parallels.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: http://lkml.kernel.org/r/1415144690-25196-1-git-send-email-wanpeng.li@linux.intel.com
[ Fixed the changelog. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/sched/fair.c