From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ns1.suse.de ([195.135.220.2]:56640 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756718AbXHIBmz (ORCPT ); Wed, 8 Aug 2007 21:42:55 -0400 Date: Thu, 9 Aug 2007 03:42:54 +0200 From: Nick Piggin Subject: Re: [patch 2/2] x86_64: ticket lock spinlock Message-ID: <20070809014254.GB12539@wotan.suse.de> References: <20070808042234.GE11018@wotan.suse.de> <20070808042444.GF11018@wotan.suse.de> <200708081226.55651.ak@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200708081226.55651.ak@suse.de> Sender: linux-arch-owner@vger.kernel.org To: Andi Kleen Cc: Andrew Morton , Linus Torvalds , Ingo Molnar , linux-arch@vger.kernel.org, Linux Kernel Mailing List List-ID: On Wed, Aug 08, 2007 at 12:26:55PM +0200, Andi Kleen wrote: > > > * > > * (the type definitions are in asm/spinlock_types.h) > > */ > > > > +#if (NR_CPUS > 256) > > +#error spinlock supports a maximum of 256 CPUs > > +#endif > > + > > static inline int __raw_spin_is_locked(raw_spinlock_t *lock) > > { > > - return *(volatile signed int *)(&(lock)->slock) <= 0; > > + int tmp = *(volatile signed int *)(&(lock)->slock); > > Why is slock not volatile signed int in the first place? Don't know really. Why does spin_is_locked need it to be volatile? > > - int oldval; > > + short tmp; > > + short oldval; > > Broken white space? Hmm, I'll fix it. Thanks, Nick