Commit 2875aef8 authored by Akinobu Mita's avatar Akinobu Mita Committed by Linus Torvalds

[PATCH] bitops: ia64: use generic bitops

- remove generic_fls64()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
- remove minix_{test,set,test_and_clear,test,find_first_zero}_bit()
- remove sched_find_first_bit()
Signed-off-by: default avatarAkinobu Mita <mita@miraclelinux.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1cc2b994
...@@ -34,6 +34,10 @@ config RWSEM_XCHGADD_ALGORITHM ...@@ -34,6 +34,10 @@ config RWSEM_XCHGADD_ALGORITHM
bool bool
default y default y
config GENERIC_FIND_NEXT_BIT
bool
default y
config GENERIC_CALIBRATE_DELAY config GENERIC_CALIBRATE_DELAY
bool bool
default y default y
......
...@@ -6,7 +6,7 @@ obj-y := io.o ...@@ -6,7 +6,7 @@ obj-y := io.o
lib-y := __divsi3.o __udivsi3.o __modsi3.o __umodsi3.o \ lib-y := __divsi3.o __udivsi3.o __modsi3.o __umodsi3.o \
__divdi3.o __udivdi3.o __moddi3.o __umoddi3.o \ __divdi3.o __udivdi3.o __moddi3.o __umoddi3.o \
bitop.o checksum.o clear_page.o csum_partial_copy.o \ checksum.o clear_page.o csum_partial_copy.o \
clear_user.o strncpy_from_user.o strlen_user.o strnlen_user.o \ clear_user.o strncpy_from_user.o strlen_user.o strnlen_user.o \
flush.o ip_fast_csum.o do_csum.o \ flush.o ip_fast_csum.o do_csum.o \
memset.o strlen.o memset.o strlen.o
......
#include <linux/compiler.h>
#include <linux/types.h>
#include <asm/intrinsics.h>
#include <linux/module.h>
#include <linux/bitops.h>
/*
* Find next zero bit in a bitmap reasonably efficiently..
*/
int __find_next_zero_bit (const void *addr, unsigned long size, unsigned long offset)
{
unsigned long *p = ((unsigned long *) addr) + (offset >> 6);
unsigned long result = offset & ~63UL;
unsigned long tmp;
if (offset >= size)
return size;
size -= result;
offset &= 63UL;
if (offset) {
tmp = *(p++);
tmp |= ~0UL >> (64-offset);
if (size < 64)
goto found_first;
if (~tmp)
goto found_middle;
size -= 64;
result += 64;
}
while (size & ~63UL) {
if (~(tmp = *(p++)))
goto found_middle;
result += 64;
size -= 64;
}
if (!size)
return result;
tmp = *p;
found_first:
tmp |= ~0UL << size;
if (tmp == ~0UL) /* any bits zero? */
return result + size; /* nope */
found_middle:
return result + ffz(tmp);
}
EXPORT_SYMBOL(__find_next_zero_bit);
/*
* Find next bit in a bitmap reasonably efficiently..
*/
int __find_next_bit(const void *addr, unsigned long size, unsigned long offset)
{
unsigned long *p = ((unsigned long *) addr) + (offset >> 6);
unsigned long result = offset & ~63UL;
unsigned long tmp;
if (offset >= size)
return size;
size -= result;
offset &= 63UL;
if (offset) {
tmp = *(p++);
tmp &= ~0UL << offset;
if (size < 64)
goto found_first;
if (tmp)
goto found_middle;
size -= 64;
result += 64;
}
while (size & ~63UL) {
if ((tmp = *(p++)))
goto found_middle;
result += 64;
size -= 64;
}
if (!size)
return result;
tmp = *p;
found_first:
tmp &= ~0UL >> (64-size);
if (tmp == 0UL) /* Are any bits set? */
return result + size; /* Nope. */
found_middle:
return result + __ffs(tmp);
}
EXPORT_SYMBOL(__find_next_bit);
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
* Copyright (C) 1998-2003 Hewlett-Packard Co * Copyright (C) 1998-2003 Hewlett-Packard Co
* David Mosberger-Tang <davidm@hpl.hp.com> * David Mosberger-Tang <davidm@hpl.hp.com>
* *
* 02/06/02 find_next_bit() and find_first_bit() added from Erich Focht's ia64 O(1) * 02/06/02 find_next_bit() and find_first_bit() added from Erich Focht's ia64
* scheduler patch * O(1) scheduler patch
*/ */
#include <linux/compiler.h> #include <linux/compiler.h>
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
* restricted to acting on a single-word quantity. * restricted to acting on a single-word quantity.
* *
* The address must be (at least) "long" aligned. * The address must be (at least) "long" aligned.
* Note that there are driver (e.g., eepro100) which use these operations to operate on * Note that there are driver (e.g., eepro100) which use these operations to
* hw-defined data-structures, so we can't easily change these operations to force a * operate on hw-defined data-structures, so we can't easily change these
* bigger alignment. * operations to force a bigger alignment.
* *
* bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1). * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
*/ */
...@@ -284,8 +284,8 @@ test_bit (int nr, const volatile void *addr) ...@@ -284,8 +284,8 @@ test_bit (int nr, const volatile void *addr)
* ffz - find the first zero bit in a long word * ffz - find the first zero bit in a long word
* @x: The long word to find the bit in * @x: The long word to find the bit in
* *
* Returns the bit-number (0..63) of the first (least significant) zero bit. Undefined if * Returns the bit-number (0..63) of the first (least significant) zero bit.
* no zero exists, so code should check against ~0UL first... * Undefined if no zero exists, so code should check against ~0UL first...
*/ */
static inline unsigned long static inline unsigned long
ffz (unsigned long x) ffz (unsigned long x)
...@@ -345,13 +345,14 @@ fls (int t) ...@@ -345,13 +345,14 @@ fls (int t)
x |= x >> 16; x |= x >> 16;
return ia64_popcnt(x); return ia64_popcnt(x);
} }
#define fls64(x) generic_fls64(x)
#include <asm-generic/bitops/fls64.h>
/* /*
* ffs: find first bit set. This is defined the same way as the libc and compiler builtin * ffs: find first bit set. This is defined the same way as the libc and
* ffs routines, therefore differs in spirit from the above ffz (man ffs): it operates on * compiler builtin ffs routines, therefore differs in spirit from the above
* "int" values only and the result value is the bit number + 1. ffs(0) is defined to * ffz (man ffs): it operates on "int" values only and the result value is the
* return zero. * bit number + 1. ffs(0) is defined to return zero.
*/ */
#define ffs(x) __builtin_ffs(x) #define ffs(x) __builtin_ffs(x)
...@@ -373,51 +374,17 @@ hweight64 (unsigned long x) ...@@ -373,51 +374,17 @@ hweight64 (unsigned long x)
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
extern int __find_next_zero_bit (const void *addr, unsigned long size, #include <asm-generic/bitops/find.h>
unsigned long offset);
extern int __find_next_bit(const void *addr, unsigned long size,
unsigned long offset);
#define find_next_zero_bit(addr, size, offset) \
__find_next_zero_bit((addr), (size), (offset))
#define find_next_bit(addr, size, offset) \
__find_next_bit((addr), (size), (offset))
/*
* The optimizer actually does good code for this case..
*/
#define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
#define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
#ifdef __KERNEL__ #ifdef __KERNEL__
#define __clear_bit(nr, addr) clear_bit(nr, addr) #include <asm-generic/bitops/ext2-non-atomic.h>
#define ext2_set_bit __test_and_set_bit
#define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a) #define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a)
#define ext2_clear_bit __test_and_clear_bit
#define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a) #define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a)
#define ext2_test_bit test_bit
#define ext2_find_first_zero_bit find_first_zero_bit
#define ext2_find_next_zero_bit find_next_zero_bit
/* Bitmap functions for the minix filesystem. */
#define minix_test_and_set_bit(nr,addr) __test_and_set_bit(nr,addr)
#define minix_set_bit(nr,addr) __set_bit(nr,addr)
#define minix_test_and_clear_bit(nr,addr) __test_and_clear_bit(nr,addr)
#define minix_test_bit(nr,addr) test_bit(nr,addr)
#define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
static inline int #include <asm-generic/bitops/minix.h>
sched_find_first_bit (unsigned long *b) #include <asm-generic/bitops/sched.h>
{
if (unlikely(b[0]))
return __ffs(b[0]);
if (unlikely(b[1]))
return 64 + __ffs(b[1]);
return __ffs(b[2]) + 128;
}
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment