From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 561D12C0091 for ; Sat, 8 Feb 2014 02:43:53 +1100 (EST) Date: Fri, 7 Feb 2014 16:43:46 +0100 From: Peter Zijlstra To: Torsten Duwe Subject: Re: [PATCH] Convert powerpc simple spinlocks into ticket locks Message-ID: <20140207154346.GC3104@twins.programming.kicks-ass.net> References: <20140206103736.GA18054@lst.de> <20140206163837.GT2936@laptop.programming.kicks-ass.net> <20140206173727.GA13048@lst.de> <1391717992.6733.232.camel@snotra.buserror.net> <20140207090248.GB26811@lst.de> <20140207103139.GP5002@laptop.programming.kicks-ass.net> <20140207104530.GG5126@laptop.programming.kicks-ass.net> <20140207114949.GA2107@lst.de> <20140207122837.GA3104@twins.programming.kicks-ass.net> <20140207151847.GB3104@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20140207151847.GB3104@twins.programming.kicks-ass.net> Cc: Tom Musta , linux-kernel@vger.kernel.org, Paul Mackerras , Anton Blanchard , Scott Wood , "Paul E. McKenney" , linuxppc-dev@lists.ozlabs.org, Ingo Molnar List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, Feb 07, 2014 at 04:18:47PM +0100, Peter Zijlstra wrote: > void ticket_lock(tickets_t *lock) > { > tickets_t t; > > /* > * Because @head is MSB, the direct increment wrap doesn't disturb > * @tail. > */ > t.pair = xadd(&lock->pair, 1<<16); > > if (likely(t.head == t.tail)) { > __lwsync(); /* acquire */ > return; > } > > while (smp_load_acquire(&lock->tail) != t.tail) > cpu_relax(); That should be "!= t.head", for that contains our ticket. I'm hopelessly scatter brained today it seems :/ > } > > void ticket_unlock(tickets_t *lock) > { > ticket_t tail = lock->tail + 1; > > /* > * The store is save against the xadd for it will make the ll/sc fail > * and try again. Aside from that PowerISA guarantees single-copy > * atomicy for half-word writes. > * > * And since only the lock owner will ever write the tail, we're good. > */ > smp_store_release(&lock->tail, tail); > }