diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 141479ce13e5..d4e4799df8ca 100755 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -2217,33 +2217,38 @@ try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags, * current. */ smp_rmb(); - if (READ_ONCE(p->on_rq) && ttwu_remote(p, wake_flags)) - goto unlock; - + if (READ_ONCE(p->on_rq)) { + if (ttwu_remote(p, wake_flags)) + goto unlock; + } else { #ifdef CONFIG_SMP - /* - * Ensure we load p->on_cpu _after_ p->on_rq, otherwise it would be - * possible to, falsely, observe p->on_cpu == 0. - * - * One must be running (->on_cpu == 1) in order to remove oneself - * from the runqueue. - * - * [S] ->on_cpu = 1; [L] ->on_rq - * UNLOCK rq->lock - * RMB - * LOCK rq->lock - * [S] ->on_rq = 0; [L] ->on_cpu - * - * Pairs with the full barrier implied in the UNLOCK+LOCK on rq->lock - * from the consecutive calls to schedule(); the first switching to our - * task, the second putting it to sleep. - * - * Form a control-dep-acquire with p->on_rq == 0 above, to ensure - * schedule()'s deactivate_task() has 'happened' and p will no longer - * care about it's own p->state. See the comment in __schedule(). - */ - smp_acquire__after_ctrl_dep(); + /* + * Ensure we load p->on_cpu _after_ p->on_rq, otherwise it would + * be possible to, falsely, observe p->on_cpu == 0. + * + * One must be running (->on_cpu == 1) in order to remove + * oneself from the runqueue. + * + * [S] ->on_cpu = 1; [L] ->on_rq + * UNLOCK rq->lock + * RMB + * LOCK rq->lock + * [S] ->on_rq = 0; [L] ->on_cpu + * + * Pairs with the full barrier implied in the UNLOCK+LOCK on + * rq->lock from the consecutive calls to schedule(); the first + * switching to our task, the second putting it to sleep. + * + * Form a control-dep-acquire with p->on_rq == 0 above, to + * ensure schedule()'s deactivate_task() has 'happened' and p + * will no longer care about it's own p->state. See the comment + * in __schedule(). + */ + smp_acquire__after_ctrl_dep(); +#endif + } +#ifdef CONFIG_SMP /* * We're doing the wakeup (@success == 1), they did a dequeue (p->on_rq * == 0), which means we need to do an enqueue, change p->state to