Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752213AbdIFI4U (ORCPT ); Wed, 6 Sep 2017 04:56:20 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:50950 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751814AbdIFI4P (ORCPT ); Wed, 6 Sep 2017 04:56:15 -0400 Date: Wed, 6 Sep 2017 10:56:08 +0200 From: Peter Zijlstra To: Thomas Gleixner Cc: "chengjian (D)" , huawei.libin@huawei.com, mingo@redhat.com, dvhart@infradead.org, linux-kernel@vger.kernel.org Subject: Re: a competition when some threads acquire futex Message-ID: <20170906085608.ogz4jhv2pieybzob@hirez.programming.kicks-ass.net> References: <3e497508-876f-6474-3f3d-acab06a63b55@huawei.com> <555186f2-8240-f7d0-e1b0-9ad1a67ff34c@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1315 Lines: 39 On Wed, Sep 06, 2017 at 10:36:29AM +0200, Thomas Gleixner wrote: > On Wed, 6 Sep 2017, chengjian (D) wrote: > > > > > diff --git a/kernel/futex.c b/kernel/futex.c > > > > index 3d38eaf..0b2d17a 100644 > > > > --- a/kernel/futex.c > > > > +++ b/kernel/futex.c > > > > @@ -1545,6 +1545,7 @@ static int wake_futex_pi(u32 __user *uaddr, u32 > > > > uval, > > > > struct futex_pi_state *pi_ > > > > spin_unlock(&hb->lock); > > > > wake_up_q(&wake_q); > > > > + _cond_resched( ); > > > > > > I wrote _cond_resched( ) in futex_wake( ) which will be called to wake up > > waiters > > when the process release the futex. > > > > > > But the patch producted by git format-patch displayed in wake_futex_pi( ). > > Ok. Still that patch has issues. > > 1) It's white space damaged. Please use TAB not spaces for > indentation. checkpatch.pl would have told you. > > 2) Why are you using _cond_resched() instead of plain cond_resched(). > > cond_resched() is what you want to use. Right, but even if it was a coherent patch, I'm not sure it makes sense. futex_wait() / futex_wake() don't make ordering guarantees and in general you don't get to have wakeup preemption if you don't run a PREEMPT kernel. So what makes this wakeup so special? Any changelog would need to have a convincing argument.