From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.suse.de (ns.suse.de [195.135.220.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx1.suse.de", Issuer "CAcert Class 3 Root" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id 176C0DDF5A for ; Thu, 22 May 2008 01:47:07 +1000 (EST) Date: Wed, 21 May 2008 17:47:02 +0200 From: Nick Piggin To: Benjamin Herrenschmidt Subject: Re: [patch 2/2] powerpc: optimise smp_wmb Message-ID: <20080521154701.GH8897@wotan.suse.de> References: <20080521141056.GC8897@wotan.suse.de> <20080521141231.GD8897@wotan.suse.de> <1211383592.8297.195.camel@pasglop> <20080521153420.GG8897@wotan.suse.de> <1211384580.8297.199.camel@pasglop> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1211384580.8297.199.camel@pasglop> Cc: linuxppc-dev@ozlabs.org, paulus@samba.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, May 21, 2008 at 11:43:00AM -0400, Benjamin Herrenschmidt wrote: > > On Wed, 2008-05-21 at 17:34 +0200, Nick Piggin wrote: > > On Wed, May 21, 2008 at 11:26:32AM -0400, Benjamin Herrenschmidt wrote: > > > > > > On Wed, 2008-05-21 at 16:12 +0200, Nick Piggin wrote: > > > > lwsync is the recommended method of store/store ordering on caching enabled > > > > memory. For those subarchs which have lwsync, use it rather than eieio for > > > > smp_wmb. > > > > > > Yuck... existence of lwsync depends on the processor at boot time... > > > > Not according to the __stringify(LWSYNC) that I just removed. At least, > > presumably it is always present on 64 bit processors, and 32 bit ones > > will be no worse off as they'll continue just using eieio. > > No, it doesn't exist on power3, but it degrades into a sync OK, but I just don't understand what the problem is... your synch.h has #ifdef __powerpc64__ #define __SUBARCH_HAS_LWSYNC #endif #ifdef __SUBARCH_HAS_LWSYNC # define LWSYNC lwsync #else # define LWSYNC sync #endif And LWSYNC is then used for rmb()... how was that OK but this not?