diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2011-03-23 19:41:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-23 22:46:11 -0400 |
commit | c4945b9ed472e8796e352f10df9dbc2841ba7b61 (patch) | |
tree | 6e2fa896f3a153d3bb16e7a07c87620cabf1ebd6 /arch | |
parent | 63ab595fb6b34234f116f05f95dc752dd5f8affb (diff) |
asm-generic: rename generic little-endian bitops functions
As a preparation for providing little-endian bitops for all architectures,
This renames generic implementation of little-endian bitops. (remove
"generic_" prefix and postfix "_le")
s/generic_find_next_le_bit/find_next_bit_le/
s/generic_find_next_zero_le_bit/find_next_zero_bit_le/
s/generic_find_first_zero_le_bit/find_first_zero_bit_le/
s/generic___test_and_set_le_bit/__test_and_set_bit_le/
s/generic___test_and_clear_le_bit/__test_and_clear_bit_le/
s/generic_test_le_bit/test_bit_le/
s/generic___set_le_bit/__set_bit_le/
s/generic___clear_le_bit/__clear_bit_le/
s/generic_test_and_set_le_bit/test_and_set_bit_le/
s/generic_test_and_clear_le_bit/test_and_clear_bit_le/
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Andreas Schwab <schwab@linux-m68k.org>
Cc: Greg Ungerer <gerg@uclinux.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/avr32/kernel/avr32_ksyms.c | 4 | ||||
-rw-r--r-- | arch/avr32/lib/findbit.S | 4 | ||||
-rw-r--r-- | arch/m68k/include/asm/bitops_mm.h | 8 | ||||
-rw-r--r-- | arch/m68k/include/asm/bitops_no.h | 2 | ||||
-rw-r--r-- | arch/powerpc/include/asm/bitops.h | 15 |
5 files changed, 17 insertions, 16 deletions
diff --git a/arch/avr32/kernel/avr32_ksyms.c b/arch/avr32/kernel/avr32_ksyms.c index 11e310c567a9..d93ead02daed 100644 --- a/arch/avr32/kernel/avr32_ksyms.c +++ b/arch/avr32/kernel/avr32_ksyms.c | |||
@@ -58,8 +58,8 @@ EXPORT_SYMBOL(find_first_zero_bit); | |||
58 | EXPORT_SYMBOL(find_next_zero_bit); | 58 | EXPORT_SYMBOL(find_next_zero_bit); |
59 | EXPORT_SYMBOL(find_first_bit); | 59 | EXPORT_SYMBOL(find_first_bit); |
60 | EXPORT_SYMBOL(find_next_bit); | 60 | EXPORT_SYMBOL(find_next_bit); |
61 | EXPORT_SYMBOL(generic_find_next_le_bit); | 61 | EXPORT_SYMBOL(find_next_bit_le); |
62 | EXPORT_SYMBOL(generic_find_next_zero_le_bit); | 62 | EXPORT_SYMBOL(find_next_zero_bit_le); |
63 | 63 | ||
64 | /* I/O primitives (lib/io-*.S) */ | 64 | /* I/O primitives (lib/io-*.S) */ |
65 | EXPORT_SYMBOL(__raw_readsb); | 65 | EXPORT_SYMBOL(__raw_readsb); |
diff --git a/arch/avr32/lib/findbit.S b/arch/avr32/lib/findbit.S index 997b33b2288a..b93586460be6 100644 --- a/arch/avr32/lib/findbit.S +++ b/arch/avr32/lib/findbit.S | |||
@@ -123,7 +123,7 @@ ENTRY(find_next_bit) | |||
123 | brgt 1b | 123 | brgt 1b |
124 | retal r11 | 124 | retal r11 |
125 | 125 | ||
126 | ENTRY(generic_find_next_le_bit) | 126 | ENTRY(find_next_bit_le) |
127 | lsr r8, r10, 5 | 127 | lsr r8, r10, 5 |
128 | sub r9, r11, r10 | 128 | sub r9, r11, r10 |
129 | retle r11 | 129 | retle r11 |
@@ -153,7 +153,7 @@ ENTRY(generic_find_next_le_bit) | |||
153 | brgt 1b | 153 | brgt 1b |
154 | retal r11 | 154 | retal r11 |
155 | 155 | ||
156 | ENTRY(generic_find_next_zero_le_bit) | 156 | ENTRY(find_next_zero_bit_le) |
157 | lsr r8, r10, 5 | 157 | lsr r8, r10, 5 |
158 | sub r9, r11, r10 | 158 | sub r9, r11, r10 |
159 | retle r11 | 159 | retle r11 |
diff --git a/arch/m68k/include/asm/bitops_mm.h b/arch/m68k/include/asm/bitops_mm.h index b4ecdaada520..31a16d47d205 100644 --- a/arch/m68k/include/asm/bitops_mm.h +++ b/arch/m68k/include/asm/bitops_mm.h | |||
@@ -366,9 +366,9 @@ static inline int minix_test_bit(int nr, const void *vaddr) | |||
366 | #define ext2_clear_bit(nr, addr) __test_and_clear_bit((nr) ^ 24, (unsigned long *)(addr)) | 366 | #define ext2_clear_bit(nr, addr) __test_and_clear_bit((nr) ^ 24, (unsigned long *)(addr)) |
367 | #define ext2_clear_bit_atomic(lock, nr, addr) test_and_clear_bit((nr) ^ 24, (unsigned long *)(addr)) | 367 | #define ext2_clear_bit_atomic(lock, nr, addr) test_and_clear_bit((nr) ^ 24, (unsigned long *)(addr)) |
368 | #define ext2_find_next_zero_bit(addr, size, offset) \ | 368 | #define ext2_find_next_zero_bit(addr, size, offset) \ |
369 | generic_find_next_zero_le_bit((unsigned long *)addr, size, offset) | 369 | find_next_zero_bit_le((unsigned long *)addr, size, offset) |
370 | #define ext2_find_next_bit(addr, size, offset) \ | 370 | #define ext2_find_next_bit(addr, size, offset) \ |
371 | generic_find_next_le_bit((unsigned long *)addr, size, offset) | 371 | find_next_bit_le((unsigned long *)addr, size, offset) |
372 | 372 | ||
373 | static inline int ext2_test_bit(int nr, const void *vaddr) | 373 | static inline int ext2_test_bit(int nr, const void *vaddr) |
374 | { | 374 | { |
@@ -398,7 +398,7 @@ static inline int ext2_find_first_zero_bit(const void *vaddr, unsigned size) | |||
398 | return (p - addr) * 32 + res; | 398 | return (p - addr) * 32 + res; |
399 | } | 399 | } |
400 | 400 | ||
401 | static inline unsigned long generic_find_next_zero_le_bit(const unsigned long *addr, | 401 | static inline unsigned long find_next_zero_bit_le(const unsigned long *addr, |
402 | unsigned long size, unsigned long offset) | 402 | unsigned long size, unsigned long offset) |
403 | { | 403 | { |
404 | const unsigned long *p = addr + (offset >> 5); | 404 | const unsigned long *p = addr + (offset >> 5); |
@@ -440,7 +440,7 @@ static inline int ext2_find_first_bit(const void *vaddr, unsigned size) | |||
440 | return (p - addr) * 32 + res; | 440 | return (p - addr) * 32 + res; |
441 | } | 441 | } |
442 | 442 | ||
443 | static inline unsigned long generic_find_next_le_bit(const unsigned long *addr, | 443 | static inline unsigned long find_next_bit_le(const unsigned long *addr, |
444 | unsigned long size, unsigned long offset) | 444 | unsigned long size, unsigned long offset) |
445 | { | 445 | { |
446 | const unsigned long *p = addr + (offset >> 5); | 446 | const unsigned long *p = addr + (offset >> 5); |
diff --git a/arch/m68k/include/asm/bitops_no.h b/arch/m68k/include/asm/bitops_no.h index 9d3cbe5fad1e..58c67aaf91e2 100644 --- a/arch/m68k/include/asm/bitops_no.h +++ b/arch/m68k/include/asm/bitops_no.h | |||
@@ -325,7 +325,7 @@ found_middle: | |||
325 | } | 325 | } |
326 | 326 | ||
327 | #define ext2_find_next_bit(addr, size, off) \ | 327 | #define ext2_find_next_bit(addr, size, off) \ |
328 | generic_find_next_le_bit((unsigned long *)(addr), (size), (off)) | 328 | find_next_bit_le((unsigned long *)(addr), (size), (off)) |
329 | #include <asm-generic/bitops/minix.h> | 329 | #include <asm-generic/bitops/minix.h> |
330 | 330 | ||
331 | #endif /* __KERNEL__ */ | 331 | #endif /* __KERNEL__ */ |
diff --git a/arch/powerpc/include/asm/bitops.h b/arch/powerpc/include/asm/bitops.h index 8a7e9314c68a..97aacbdd752a 100644 --- a/arch/powerpc/include/asm/bitops.h +++ b/arch/powerpc/include/asm/bitops.h | |||
@@ -303,11 +303,12 @@ static __inline__ int test_le_bit(unsigned long nr, | |||
303 | #define __test_and_clear_le_bit(nr, addr) \ | 303 | #define __test_and_clear_le_bit(nr, addr) \ |
304 | __test_and_clear_bit((nr) ^ BITOP_LE_SWIZZLE, (addr)) | 304 | __test_and_clear_bit((nr) ^ BITOP_LE_SWIZZLE, (addr)) |
305 | 305 | ||
306 | #define find_first_zero_le_bit(addr, size) generic_find_next_zero_le_bit((addr), (size), 0) | 306 | #define find_first_zero_bit_le(addr, size) \ |
307 | unsigned long generic_find_next_zero_le_bit(const unsigned long *addr, | 307 | find_next_zero_bit_le((addr), (size), 0) |
308 | unsigned long find_next_zero_bit_le(const unsigned long *addr, | ||
308 | unsigned long size, unsigned long offset); | 309 | unsigned long size, unsigned long offset); |
309 | 310 | ||
310 | unsigned long generic_find_next_le_bit(const unsigned long *addr, | 311 | unsigned long find_next_bit_le(const unsigned long *addr, |
311 | unsigned long size, unsigned long offset); | 312 | unsigned long size, unsigned long offset); |
312 | /* Bitmap functions for the ext2 filesystem */ | 313 | /* Bitmap functions for the ext2 filesystem */ |
313 | 314 | ||
@@ -324,12 +325,12 @@ unsigned long generic_find_next_le_bit(const unsigned long *addr, | |||
324 | #define ext2_test_bit(nr, addr) test_le_bit((nr),(unsigned long*)addr) | 325 | #define ext2_test_bit(nr, addr) test_le_bit((nr),(unsigned long*)addr) |
325 | 326 | ||
326 | #define ext2_find_first_zero_bit(addr, size) \ | 327 | #define ext2_find_first_zero_bit(addr, size) \ |
327 | find_first_zero_le_bit((unsigned long*)addr, size) | 328 | find_first_zero_bit_le((unsigned long*)addr, size) |
328 | #define ext2_find_next_zero_bit(addr, size, off) \ | 329 | #define ext2_find_next_zero_bit(addr, size, off) \ |
329 | generic_find_next_zero_le_bit((unsigned long*)addr, size, off) | 330 | find_next_zero_bit_le((unsigned long *)addr, size, off) |
330 | 331 | ||
331 | #define ext2_find_next_bit(addr, size, off) \ | 332 | #define ext2_find_next_bit(addr, size, off) \ |
332 | generic_find_next_le_bit((unsigned long *)addr, size, off) | 333 | find_next_bit_le((unsigned long *)addr, size, off) |
333 | /* Bitmap functions for the minix filesystem. */ | 334 | /* Bitmap functions for the minix filesystem. */ |
334 | 335 | ||
335 | #define minix_test_and_set_bit(nr,addr) \ | 336 | #define minix_test_and_set_bit(nr,addr) \ |
@@ -342,7 +343,7 @@ unsigned long generic_find_next_le_bit(const unsigned long *addr, | |||
342 | test_le_bit(nr, (unsigned long *)addr) | 343 | test_le_bit(nr, (unsigned long *)addr) |
343 | 344 | ||
344 | #define minix_find_first_zero_bit(addr,size) \ | 345 | #define minix_find_first_zero_bit(addr,size) \ |
345 | find_first_zero_le_bit((unsigned long *)addr, size) | 346 | find_first_zero_bit_le((unsigned long *)addr, size) |
346 | 347 | ||
347 | #include <asm-generic/bitops/sched.h> | 348 | #include <asm-generic/bitops/sched.h> |
348 | 349 | ||