Skip to content

Commit

Permalink
sched: remove rt_overload()
Browse files Browse the repository at this point in the history
remove rt_overload() - it's an unnecessary indirection.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jan 25, 2008
1 parent 84de427 commit 6e1938d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions kernel/sched_rt.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ static inline int rt_overloaded(void)
return atomic_read(&rto_count);
}

static inline cpumask_t *rt_overload(void)
{
return &rt_overload_mask;
}

static inline void rt_set_overload(struct rq *rq)
{
rq->rt.overloaded = 1;
Expand Down Expand Up @@ -590,7 +585,6 @@ static int pull_rt_task(struct rq *this_rq)
struct task_struct *next;
struct task_struct *p;
struct rq *src_rq;
cpumask_t *rto_cpumask;
int this_cpu = this_rq->cpu;
int cpu;
int ret = 0;
Expand All @@ -608,9 +602,7 @@ static int pull_rt_task(struct rq *this_rq)

next = pick_next_task_rt(this_rq);

rto_cpumask = rt_overload();

for_each_cpu_mask(cpu, *rto_cpumask) {
for_each_cpu_mask(cpu, rt_overload_mask) {
if (this_cpu == cpu)
continue;

Expand Down

0 comments on commit 6e1938d

Please sign in to comment.