From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932819AbXB0IiW (ORCPT ); Tue, 27 Feb 2007 03:38:22 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932862AbXB0IiV (ORCPT ); Tue, 27 Feb 2007 03:38:21 -0500 Received: from gw.goop.org ([64.81.55.164]:46792 "EHLO mail.goop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932780AbXB0IiT (ORCPT ); Tue, 27 Feb 2007 03:38:19 -0500 Message-Id: <20070227081629.356512263@goop.org> References: <20070227081337.434798469@goop.org> User-Agent: quilt/0.46-1 Date: Tue, 27 Feb 2007 00:13:38 -0800 From: Jeremy Fitzhardinge To: Andi Kleen Cc: Andrew Morton , linux-kernel@vger.kernel.org, virtualization@lists.osdl.org, xen-devel@lists.xensource.com, Chris Wright , Zachary Amsden , Rusty Russell Subject: [patch 01/26] Xen-paravirt_ops: Fix typo in sync_constant_test_bit()s name. Content-Disposition: inline; filename=fix-sync-bitops.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Jeremy Fitzhardinge --- include/asm-i386/sync_bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) =================================================================== --- a/include/asm-i386/sync_bitops.h +++ b/include/asm-i386/sync_bitops.h @@ -130,7 +130,7 @@ static inline int sync_test_and_change_b return oldbit; } -static __always_inline int sync_const_test_bit(int nr, const volatile unsigned long *addr) +static __always_inline int sync_constant_test_bit(int nr, const volatile unsigned long *addr) { return ((1UL << (nr & 31)) & (((const volatile unsigned int *)addr)[nr >> 5])) != 0; --