From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3rNY8g1hW1zDq6B for ; Mon, 6 Jun 2016 21:57:07 +1000 (AEST) Date: Mon, 6 Jun 2016 13:56:55 +0200 From: Peter Zijlstra To: Michael Ellerman Cc: linuxppc-dev@lists.ozlabs.org, Linux Kernel Mailing List , Benjamin Herrenschmidt , Paul Mackerras , "Paul E. McKenney" , Will Deacon , Boqun Feng Subject: Re: [PATCH v3] powerpc: spinlock: Fix spin_unlock_wait() Message-ID: <20160606115655.GD30909@twins.programming.kicks-ass.net> References: <1465213340.2658.1.camel@ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1465213340.2658.1.camel@ellerman.id.au> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, Jun 06, 2016 at 09:42:20PM +1000, Michael Ellerman wrote: > +static inline void arch_spin_unlock_wait(arch_spinlock_t *lock) > +{ > + arch_spinlock_t lock_val; > + > + smp_mb(); > + > + /* > + * Atomically load and store back the lock value (unchanged). This > + * ensures that our observation of the lock value is ordered with > + * respect to other lock operations. > + */ > + __asm__ __volatile__( > +"1: " PPC_LWARX(%0, 0, %2, 0) "\n" > +" stwcx. %0, 0, %2\n" > +" bne- 1b\n" > + : "=&r" (lock_val), "+m" (*lock) > + : "r" (lock) > + : "cr0", "xer"); > + > + if (arch_spin_value_unlocked(lock_val)) > + goto out; > + > + while (!arch_spin_value_unlocked(*lock)) { > + HMT_low(); > + if (SHARED_PROCESSOR) > + __spin_yield(lock); > + } > + HMT_medium(); > + > +out: > + smp_mb(); > +} Why the move to in-line this implementation? It looks like a fairly big function.