From: Alex Shi <[email protected]>

Added 4 new members in sb_lb_stats, that will be used in incomming
power aware balance.

group_min;      //least utliszation group in domain
min_load_per_task; //load_per_task in group_min
leader_util;    // sum utilizations of group_leader
min_util;       // sum utilizations of group_min

Signed-off-by: Alex Shi <[email protected]>
Signed-off-by: Preeti U Murthy <[email protected]>
---

 kernel/sched/fair.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index fd93eaf..6d40aa3 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -4597,6 +4597,10 @@ struct sd_lb_stats {
         /* Varibles of power aware scheduling */
         unsigned int  sd_util;  /* sum utilization of this domain */
         struct sched_group *group_leader; /* Group which relieves group_min */
+        struct sched_group *group_min;  /* Least loaded group in sd */
+        unsigned long min_load_per_task; /* load_per_task in group_min */
+        unsigned int  leader_util;      /* sum utilizations of group_leader */
+        unsigned int  min_util;         /* sum utilizations of group_min */
 #endif
 };
 

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to