[PATCH 03/13] RT: Add a per-cpu rt_overload indication

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Gregory Haskins
Date: Tuesday, October 23, 2007 - 9:50 am

The system currently evaluates all online CPUs whenever one or more enters
an rt_overload condition.  This suffers from scalability limitations as
the # of online CPUs increases.  So we introduce a cpumask to track
exactly which CPUs need RT balancing.

Signed-off-by: Gregory Haskins <ghaskins@novell.com>
CC: Peter W. Morreale <pmorreale@novell.com>
---

 kernel/sched.c |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index daeb8ed..e22eec7 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -632,6 +632,7 @@ static inline struct rq *this_rq_lock(void)
 
 #if defined(CONFIG_PREEMPT_RT) && defined(CONFIG_SMP)
 static __cacheline_aligned_in_smp atomic_t rt_overload;
+static cpumask_t rto_cpus;
 #endif
 
 static inline void inc_rt_tasks(struct task_struct *p, struct rq *rq)
@@ -640,8 +641,11 @@ static inline void inc_rt_tasks(struct task_struct *p, struct rq *rq)
 	if (rt_task(p)) {
 		rq->rt_nr_running++;
 # ifdef CONFIG_SMP
-		if (rq->rt_nr_running == 2)
+		if (rq->rt_nr_running == 2) {
+			cpu_set(rq->cpu, rto_cpus);
+			smp_wmb();
 			atomic_inc(&rt_overload);
+		}
 # endif
 	}
 #endif
@@ -654,8 +658,10 @@ static inline void dec_rt_tasks(struct task_struct *p, struct rq *rq)
 		WARN_ON(!rq->rt_nr_running);
 		rq->rt_nr_running--;
 # ifdef CONFIG_SMP
-		if (rq->rt_nr_running == 1)
+		if (rq->rt_nr_running == 1) {
 			atomic_dec(&rt_overload);
+			cpu_clear(rq->cpu, rto_cpus);
+		}
 # endif
 	}
 #endif
@@ -1622,7 +1628,7 @@ static void balance_rt_tasks(struct rq *this_rq, int this_cpu)
 	 */
 	next = pick_next_task(this_rq, this_rq->curr);
 
-	for_each_online_cpu(cpu) {
+	for_each_cpu_mask(cpu, rto_cpus) {
 		if (cpu == this_cpu)
 			continue;
 		src_rq = cpu_rq(cpu);

-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 00/13] Balance RT tasks v5, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 01/13] RT: push-rt, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 03/13] RT: Add a per-cpu rt_overload indication, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 05/13] RT: Initialize the priority value, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 06/13] RT: Maintain the highest RQ priority, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 07/13] RT: Clean up some of the push-rt logic, Gregory Haskins, (Tue Oct 23, 9:50 am)
[PATCH 10/13] RT: Fixes for push-rt patch, Gregory Haskins, (Tue Oct 23, 9:51 am)
[PATCH 11/13] RT: Condense NORMAL and IDLE priorities, Gregory Haskins, (Tue Oct 23, 9:51 am)
[PATCH 12/13] RT: CPU priority management, Gregory Haskins, (Tue Oct 23, 9:51 am)