From: Jeremy Fitzhardinge This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual block device (blockfront) * virtual network device (netfront) This patch: Fix typo in sync_constant_test_bit()s name Signed-off-by: Jeremy Fitzhardinge Cc: Zachary Amsden Cc: Rusty Russell Cc: Chris Wright Cc: Andi Kleen Signed-off-by: Andrew Morton --- include/asm-i386/sync_bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-i386/sync_bitops.h~xen-paravirt-fix-typo-in-sync_constant_test_bits-name include/asm-i386/sync_bitops.h --- a/include/asm-i386/sync_bitops.h~xen-paravirt-fix-typo-in-sync_constant_test_bits-name +++ a/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; _