From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753779AbdHKUMy (ORCPT ); Fri, 11 Aug 2017 16:12:54 -0400 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:59896 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753648AbdHKUMw (ORCPT ); Fri, 11 Aug 2017 16:12:52 -0400 Date: Fri, 11 Aug 2017 13:12:47 -0700 From: "Paul E. McKenney" To: Peter Zijlstra Cc: Stephen Rothwell , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Linux-Next Mailing List , Linux Kernel Mailing List Subject: Re: linux-next: build failure after merge of the rcu tree Reply-To: paulmck@linux.vnet.ibm.com References: <20170811144352.585085e2@canb.auug.org.au> <20170811045453.GB3730@linux.vnet.ibm.com> <20170811091434.h6mkuuw3zcgkzg26@hirez.programming.kicks-ass.net> <20170811144150.26gowhxte7ri5fpk@hirez.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170811144150.26gowhxte7ri5fpk@hirez.programming.kicks-ass.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-GCONF: 00 x-cbid: 17081120-2213-0000-0000-000002085E33 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007526; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000220; SDB=6.00900904; UDB=6.00451077; IPR=6.00681107; BA=6.00005523; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00016649; XFM=3.00000015; UTC=2017-08-11 20:12:49 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17081120-2214-0000-0000-000057304E8D Message-Id: <20170811201247.GH3730@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-08-11_07:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1706020000 definitions=main-1708110316 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Aug 11, 2017 at 04:41:50PM +0200, Peter Zijlstra wrote: > On Fri, Aug 11, 2017 at 11:14:34AM +0200, Peter Zijlstra wrote: > > On Thu, Aug 10, 2017 at 09:54:53PM -0700, Paul E. McKenney wrote: > > > On Fri, Aug 11, 2017 at 02:43:52PM +1000, Stephen Rothwell wrote: > > > > > > Looks like I need to rebase my patch on top of a9668cd6ee28, and > > > than put an smp_mb__after_spinlock() between the lock and the unlock. > > > > > > Peter, any objections to that approach? Other suggestions? > > > > Hurm.. I'll have to try and understand that comment there again it > > seems. > > OK, so per commit b5740f4b2cb3 ("sched: Fix ancient race in do_exit()") > the race is with try_to_wake_up(): > > down_read() > p->state = TASK_UNINTERRUPTIBLE; > > try_to_wake_up(p) > spin_lock(p->pi_lock); > /* sees TASK_UNINTERRUPTIBLE */ > ttwu_remote() > /* check stuff, no need to schedule() */ > p->state = TASK_RUNNING > > > p->state = TASK_DEAD > > p->state = TASK_RUNNING /* whoops! */ > spin_unlock(p->pi_lock); > > __schedule(false); > BUG(); > > > > > So given that, I think that: > > spin_lock(¤t->pi_lock); > spin_unlock(¤t->pi_lock); > > current->state = TASK_DEAD; > > is sufficient. I don't see a need for an additional smp_mb here. > > Either the concurrent ttwu is finished and we must observe its RUNNING > store, or it will observe our RUNNING store. Makes sense to me! Please see below for the updated commit. Thanx, Paul ------------------------------------------------------------------------ commit 23a9b748a3d27f67cdb078fcb891a920285e75d9 Author: Paul E. McKenney Date: Thu Jun 29 12:08:26 2017 -0700 sched: Replace spin_unlock_wait() with lock/unlock pair There is no agreed-upon definition of spin_unlock_wait()'s semantics, and it appears that all callers could do just as well with a lock/unlock pair. This commit therefore replaces the spin_unlock_wait() call in do_task_dead() with spin_lock() followed immediately by spin_unlock(). This should be safe from a performance perspective because the lock is this tasks ->pi_lock, and this is called only after the task exits. Signed-off-by: Paul E. McKenney Cc: Ingo Molnar Cc: Peter Zijlstra Cc: Will Deacon Cc: Alan Stern Cc: Andrea Parri Cc: Linus Torvalds [ paulmck: Drop smp_mb() based on Peter Zijlstra's analysis: http://lkml.kernel.org/r/20170811144150.26gowhxte7ri5fpk@hirez.programming.kicks-ass.net ] diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 17c667b427b4..5d22323ae099 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -3352,8 +3352,8 @@ void __noreturn do_task_dead(void) * To avoid it, we have to wait for releasing tsk->pi_lock which * is held by try_to_wake_up() */ - smp_mb(); - raw_spin_unlock_wait(¤t->pi_lock); + raw_spin_lock_irq(¤t->pi_lock); + raw_spin_unlock_irq(¤t->pi_lock); /* Causes final put_task_struct in finish_task_switch(): */ __set_current_state(TASK_DEAD);