From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751398AbcBMMLO (ORCPT ); Sat, 13 Feb 2016 07:11:14 -0500 Received: from casper.infradead.org ([85.118.1.10]:55994 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751167AbcBMMKy (ORCPT ); Sat, 13 Feb 2016 07:10:54 -0500 Date: Sat, 13 Feb 2016 13:10:52 +0100 From: Peter Zijlstra To: Davidlohr Bueso Cc: Waiman Long , Ingo Molnar , linux-kernel@vger.kernel.org, Linus Torvalds , Ding Tianhong , Jason Low , "Paul E. McKenney" , Thomas Gleixner , Will Deacon , Tim Chen , Waiman Long Subject: Re: [PATCH v2 1/4] locking/mutex: Add waiter parameter to mutex_optimistic_spin() Message-ID: <20160213121052.GB6357@twins.programming.kicks-ass.net> References: <1455298335-53229-1-git-send-email-Waiman.Long@hpe.com> <1455298335-53229-2-git-send-email-Waiman.Long@hpe.com> <20160212202355.GY6357@twins.programming.kicks-ass.net> <20160212221444.GC16417@linux-uzut.site> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160212221444.GC16417@linux-uzut.site> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 12, 2016 at 02:14:44PM -0800, Davidlohr Bueso wrote: > On Fri, 12 Feb 2016, Peter Zijlstra wrote: > > >On Fri, Feb 12, 2016 at 12:32:12PM -0500, Waiman Long wrote: > >> static bool mutex_optimistic_spin(struct mutex *lock, > >>+ struct ww_acquire_ctx *ww_ctx, > >>+ const bool use_ww_ctx, int waiter) > >> { > >> struct task_struct *task = current; > >>+ bool acquired = false; > >> > >>+ if (!waiter) { > >>+ if (!mutex_can_spin_on_owner(lock)) > >>+ goto done; > > > >Why doesn't the waiter have to check mutex_can_spin_on_owner() ? > > afaict because mutex_can_spin_on_owner() fails immediately when the counter > is -1, which is a nono for the waiters case. Can't see it do that, also, if it were to do that, we'd not be here since having a waiter would then mean no spinners and no starvation etc..