From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755636Ab1ACSNg (ORCPT ); Mon, 3 Jan 2011 13:13:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:63593 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755621Ab1ACSNf (ORCPT ); Mon, 3 Jan 2011 13:13:35 -0500 Date: Mon, 3 Jan 2011 19:05:34 +0100 From: Oleg Nesterov To: Peter Zijlstra Cc: Chris Mason , Frank Rowand , Ingo Molnar , Thomas Gleixner , Mike Galbraith , Paul Turner , Jens Axboe , Yong Zhang , Steven Rostedt , linux-kernel@vger.kernel.org Subject: Re: [RFC][PATCH 08/17] sched: Drop the rq argument to sched_class::select_task_rq() Message-ID: <20110103180534.GA16502@redhat.com> References: <20101224122338.172750730@chello.nl> <20101224123742.887559254@chello.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101224123742.887559254@chello.nl> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/24, Peter Zijlstra wrote: > > @@ -2680,24 +2681,17 @@ void wake_up_new_task(struct task_struct > { > unsigned long flags; > struct rq *rq; > - int cpu __maybe_unused = get_cpu(); Wait, I think this not right. > #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(rq, p, SD_BALANCE_FORK, 0); > - set_task_cpu(p, cpu); > + set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0)); > > - p->state = TASK_RUNNING; > task_rq_unlock(rq, &flags); We need preempt_disable() to protect us against CPU hotplug. This task was never activated, it won't be found/migrated if that CPU goes away before we take task_rq_lock(). Oleg.