From owner-svn-src-stable-9@FreeBSD.ORG Thu Apr 26 13:57:42 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F8D6106566B; Thu, 26 Apr 2012 13:57:42 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EE24E8FC0A; Thu, 26 Apr 2012 13:57:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3QDvf1K051707; Thu, 26 Apr 2012 13:57:41 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3QDvfS4051705; Thu, 26 Apr 2012 13:57:41 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201204261357.q3QDvfS4051705@svn.freebsd.org> From: Nathan Whitehorn Date: Thu, 26 Apr 2012 13:57:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234705 - stable/9/sys/powerpc/include X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Apr 2012 13:57:42 -0000 Author: nwhitehorn Date: Thu Apr 26 13:57:41 2012 New Revision: 234705 URL: http://svn.freebsd.org/changeset/base/234705 Log: MFC r234589: Correctly specify assembler constrains for synchronization instructions. Modified: stable/9/sys/powerpc/include/cpufunc.h Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/powerpc/include/cpufunc.h ============================================================================== --- stable/9/sys/powerpc/include/cpufunc.h Thu Apr 26 13:56:38 2012 (r234704) +++ stable/9/sys/powerpc/include/cpufunc.h Thu Apr 26 13:57:41 2012 (r234705) @@ -176,21 +176,21 @@ static __inline void eieio(void) { - __asm __volatile ("eieio"); + __asm __volatile ("eieio" : : : "memory"); } static __inline void isync(void) { - __asm __volatile ("isync"); + __asm __volatile ("isync" : : : "memory"); } static __inline void powerpc_sync(void) { - __asm __volatile ("sync"); + __asm __volatile ("sync" : : : "memory"); } static __inline register_t