Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142909
b: refs/heads/master
c: 13b8bd0
h: refs/heads/master
i:
  142907: e046c8e
v: v3
  • Loading branch information
Rusty Russell authored and Ingo Molnar committed Apr 1, 2009
1 parent ff649a7 commit 8daf34b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a18b83b7ef3c98cd8b4bb885e4a649a8f30fb7b0
refs/heads/master: 13b8bd0a5713bdf05659019badd7c0407984ece1
5 changes: 3 additions & 2 deletions trunk/kernel/sched_cpupri.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static int convert_prio(int prio)
* cpupri_find - find the best (lowest-pri) CPU in the system
* @cp: The cpupri context
* @p: The task
* @lowest_mask: A mask to fill in with selected CPUs
* @lowest_mask: A mask to fill in with selected CPUs (or NULL)
*
* Note: This function returns the recommended CPUs as calculated during the
* current invokation. By the time the call returns, the CPUs may have in
Expand All @@ -81,7 +81,8 @@ int cpupri_find(struct cpupri *cp, struct task_struct *p,
if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids)
continue;

cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask);
if (lowest_mask)
cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask);
return 1;
}

Expand Down
15 changes: 4 additions & 11 deletions trunk/kernel/sched_rt.c
Original file line number Diff line number Diff line change
Expand Up @@ -805,20 +805,15 @@ static int select_task_rq_rt(struct task_struct *p, int sync)

static void check_preempt_equal_prio(struct rq *rq, struct task_struct *p)
{
cpumask_var_t mask;

if (rq->curr->rt.nr_cpus_allowed == 1)
return;

if (!alloc_cpumask_var(&mask, GFP_ATOMIC))
return;

if (p->rt.nr_cpus_allowed != 1
&& cpupri_find(&rq->rd->cpupri, p, mask))
goto free;
&& cpupri_find(&rq->rd->cpupri, p, NULL))
return;

if (!cpupri_find(&rq->rd->cpupri, rq->curr, mask))
goto free;
if (!cpupri_find(&rq->rd->cpupri, rq->curr, NULL))
return;

/*
* There appears to be other cpus that can accept
Expand All @@ -827,8 +822,6 @@ static void check_preempt_equal_prio(struct rq *rq, struct task_struct *p)
*/
requeue_task_rt(rq, p, 1);
resched_task(rq->curr);
free:
free_cpumask_var(mask);
}

#endif /* CONFIG_SMP */
Expand Down

0 comments on commit 8daf34b

Please sign in to comment.