Skip to content

Commit ab2515c

Browse files
Peter ZijlstraIngo Molnar
authored andcommitted
sched: Drop rq->lock from first part of wake_up_new_task()
Since p->pi_lock now protects all things needed to call select_task_rq() avoid the double remote rq->lock acquisition and rely on p->pi_lock. Reviewed-by: Frank Rowand <[email protected]> Signed-off-by: Peter Zijlstra <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Nick Piggin <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Andrew Morton <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
1 parent 0122ec5 commit ab2515c

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

kernel/sched.c

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2736,28 +2736,18 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
27362736
{
27372737
unsigned long flags;
27382738
struct rq *rq;
2739-
int cpu __maybe_unused = get_cpu();
27402739

2740+
raw_spin_lock_irqsave(&p->pi_lock, flags);
27412741
#ifdef CONFIG_SMP
2742-
rq = task_rq_lock(p, &flags);
2743-
p->state = TASK_WAKING;
2744-
27452742
/*
27462743
* Fork balancing, do it here and not earlier because:
27472744
* - cpus_allowed can change in the fork path
27482745
* - any previously selected cpu might disappear through hotplug
2749-
*
2750-
* We set TASK_WAKING so that select_task_rq() can drop rq->lock
2751-
* without people poking at ->cpus_allowed.
27522746
*/
2753-
cpu = select_task_rq(p, SD_BALANCE_FORK, 0);
2754-
set_task_cpu(p, cpu);
2755-
2756-
p->state = TASK_RUNNING;
2757-
task_rq_unlock(rq, p, &flags);
2747+
set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0));
27582748
#endif
27592749

2760-
rq = task_rq_lock(p, &flags);
2750+
rq = __task_rq_lock(p);
27612751
activate_task(rq, p, 0);
27622752
p->on_rq = 1;
27632753
trace_sched_wakeup_new(p, true);
@@ -2767,7 +2757,6 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
27672757
p->sched_class->task_woken(rq, p);
27682758
#endif
27692759
task_rq_unlock(rq, p, &flags);
2770-
put_cpu();
27712760
}
27722761

27732762
#ifdef CONFIG_PREEMPT_NOTIFIERS

0 commit comments

Comments
 (0)