mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
[PATCH] sched: decrease number of load balances
Currently at a particular domain, each cpu in the sched group will do a load balance at the frequency of balance_interval. More the cores and threads, more the cpus will be in each sched group at SMP and NUMA domain. And we endup spending quite a bit of time doing load balancing in those domains. Fix this by making only one cpu(first idle cpu or first cpu in the group if all the cpus are busy) in the sched group do the load balance at that particular sched domain and this load will slowly percolate down to the other cpus with in that group(when they do load balancing at lower domains). Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com> Cc: Christoph Lameter <clameter@engr.sgi.com> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
b18ec80396
commit
783609c6cb
2 changed files with 48 additions and 12 deletions
|
@ -707,6 +707,7 @@ struct sched_domain {
|
|||
unsigned long lb_hot_gained[MAX_IDLE_TYPES];
|
||||
unsigned long lb_nobusyg[MAX_IDLE_TYPES];
|
||||
unsigned long lb_nobusyq[MAX_IDLE_TYPES];
|
||||
unsigned long lb_stopbalance[MAX_IDLE_TYPES];
|
||||
|
||||
/* Active load balancing */
|
||||
unsigned long alb_cnt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue