Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 245583
b: refs/heads/master
c: ab2515c
h: refs/heads/master
i:
  245581: 9fee582
  245579: 3b40d2c
  245575: 8110da3
  245567: 67648d6
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Apr 14, 2011
1 parent 9776aa1 commit cdad680
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 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: 0122ec5b02f766c355b3168df53a6c038a24fa0d
refs/heads/master: ab2515c4b98f7bc4fa11cad9fa0f811d63a72a26
17 changes: 3 additions & 14 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -2736,28 +2736,18 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
{
unsigned long flags;
struct rq *rq;
int cpu __maybe_unused = get_cpu();

raw_spin_lock_irqsave(&p->pi_lock, flags);
#ifdef CONFIG_SMP
rq = task_rq_lock(p, &flags);
p->state = TASK_WAKING;

/*
* Fork balancing, do it here and not earlier because:
* - cpus_allowed can change in the fork path
* - any previously selected cpu might disappear through hotplug
*
* We set TASK_WAKING so that select_task_rq() can drop rq->lock
* without people poking at ->cpus_allowed.
*/
cpu = select_task_rq(p, SD_BALANCE_FORK, 0);
set_task_cpu(p, cpu);

p->state = TASK_RUNNING;
task_rq_unlock(rq, p, &flags);
set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0));
#endif

rq = task_rq_lock(p, &flags);
rq = __task_rq_lock(p);
activate_task(rq, p, 0);
p->on_rq = 1;
trace_sched_wakeup_new(p, true);
Expand All @@ -2767,7 +2757,6 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
p->sched_class->task_woken(rq, p);
#endif
task_rq_unlock(rq, p, &flags);
put_cpu();
}

#ifdef CONFIG_PREEMPT_NOTIFIERS
Expand Down

0 comments on commit cdad680

Please sign in to comment.