1FIND_BUSIEST_GROUP(9) Driver Basics FIND_BUSIEST_GROUP(9)
2
3
4
6 find_busiest_group - Returns the busiest group within the sched_domain
7 if there is an imbalance. If there isn't an imbalance, and the user has
8 opted for power-savings, it returns a group whose CPUs can be put to
9 idle by rebalancing those tasks elsewhere, if such a group exists.
10
12 struct sched_group * find_busiest_group(struct lb_env * env);
13
15 env
16 The load balancing environment.
17
19 Also calculates the amount of weighted load which should be moved to
20 restore balance.
21
23 - The busiest group if imbalance exists. - If no imbalance and user has
24 opted for power-savings balance, return the least loaded group whose
25 CPUs can be put to idle by rebalancing its tasks onto our group.
26
28Kernel Hackers Manual 3.10 June 2019 FIND_BUSIEST_GROUP(9)