| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifndef _PARISC_BITOPS_H
 | 
					
						
							|  |  |  | #define _PARISC_BITOPS_H
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:40:26 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef _LINUX_BITOPS_H
 | 
					
						
							|  |  |  | #error only <linux/bitops.h> can be included directly
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/compiler.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | #include <asm/types.h>		/* for BITS_PER_LONG/SHIFT_PER_LONG */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/byteorder.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-26 16:09:06 -07:00
										 |  |  | #include <linux/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * HP-PARISC specific bit operations | 
					
						
							|  |  |  |  * for a detailed description of the functions please refer | 
					
						
							|  |  |  |  * to include/asm-i386/bitops.h or kerneldoc | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | #define CHOP_SHIFTCOUNT(x) (((unsigned long) (x)) & (BITS_PER_LONG - 1))
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define smp_mb__before_clear_bit()      smp_mb()
 | 
					
						
							|  |  |  | #define smp_mb__after_clear_bit()       smp_mb()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | /* See http://marc.theaimsgroup.com/?t=108826637900003 for discussion
 | 
					
						
							|  |  |  |  * on use of volatile and __*_bit() (set/clear/change): | 
					
						
							|  |  |  |  *	*_bit() want use of volatile. | 
					
						
							|  |  |  |  *	__*_bit() are "relaxed" and don't use spinlock or volatile. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __inline__ void set_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = 1UL << CHOP_SHIFTCOUNT(nr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							|  |  |  | 	*addr |= mask; | 
					
						
							|  |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | static __inline__ void clear_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = ~(1UL << CHOP_SHIFTCOUNT(nr)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	*addr &= mask; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | static __inline__ void change_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = 1UL << CHOP_SHIFTCOUNT(nr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							|  |  |  | 	*addr ^= mask; | 
					
						
							|  |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | static __inline__ int test_and_set_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = 1UL << CHOP_SHIFTCOUNT(nr); | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	unsigned long old; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	int set; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	old = *addr; | 
					
						
							|  |  |  | 	set = (old & mask) ? 1 : 0; | 
					
						
							|  |  |  | 	if (!set) | 
					
						
							|  |  |  | 		*addr = old | mask; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	return set; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | static __inline__ int test_and_clear_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = 1UL << CHOP_SHIFTCOUNT(nr); | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	unsigned long old; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	int set; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	old = *addr; | 
					
						
							|  |  |  | 	set = (old & mask) ? 1 : 0; | 
					
						
							|  |  |  | 	if (set) | 
					
						
							|  |  |  | 		*addr = old & ~mask; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-14 09:00:25 -07:00
										 |  |  | 	return set; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | static __inline__ int test_and_change_bit(int nr, volatile unsigned long * addr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	unsigned long mask = 1UL << CHOP_SHIFTCOUNT(nr); | 
					
						
							|  |  |  | 	unsigned long oldbit; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addr += (nr >> SHIFT_PER_LONG); | 
					
						
							|  |  |  | 	_atomic_spin_lock_irqsave(addr, flags); | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	oldbit = *addr; | 
					
						
							|  |  |  | 	*addr = oldbit ^ mask; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	_atomic_spin_unlock_irqrestore(addr, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 	return (oldbit & mask) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | #include <asm-generic/bitops/non-atomic.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * __ffs - find first bit in word. returns 0 to "BITS_PER_LONG-1". | 
					
						
							|  |  |  |  * @word: The word to search | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * __ffs() return is undefined if no bit is set. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 32-bit fast __ffs by LaMont Jones "lamont At hp com". | 
					
						
							|  |  |  |  * 64-bit enhancement by Grant Grundler "grundler At parisc-linux org". | 
					
						
							|  |  |  |  * (with help from willy/jejb to get the semantics right) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This algorithm avoids branches by making use of nullification. | 
					
						
							|  |  |  |  * One side effect of "extr" instructions is it sets PSW[N] bit. | 
					
						
							|  |  |  |  * How PSW[N] (nullify next insn) gets set is determined by the  | 
					
						
							|  |  |  |  * "condition" field (eg "<>" or "TR" below) in the extr* insn. | 
					
						
							|  |  |  |  * Only the 1st and one of either the 2cd or 3rd insn will get executed. | 
					
						
							|  |  |  |  * Each set of 3 insn will get executed in 2 cycles on PA8x00 vs 16 or so | 
					
						
							|  |  |  |  * cycles for each mispredicted branch. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __inline__ unsigned long __ffs(unsigned long x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	__asm__( | 
					
						
							| 
									
										
										
										
											2007-01-28 15:09:20 +01:00
										 |  |  | #ifdef CONFIG_64BIT
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		" ldi       63,%1\n" | 
					
						
							|  |  |  | 		" extrd,u,*<>  %0,63,32,%%r0\n" | 
					
						
							|  |  |  | 		" extrd,u,*TR  %0,31,32,%0\n"	/* move top 32-bits down */ | 
					
						
							|  |  |  | 		" addi    -32,%1,%1\n" | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 		" ldi       31,%1\n" | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 		" extru,<>  %0,31,16,%%r0\n" | 
					
						
							|  |  |  | 		" extru,TR  %0,15,16,%0\n"	/* xxxx0000 -> 0000xxxx */ | 
					
						
							|  |  |  | 		" addi    -16,%1,%1\n" | 
					
						
							|  |  |  | 		" extru,<>  %0,31,8,%%r0\n" | 
					
						
							|  |  |  | 		" extru,TR  %0,23,8,%0\n"	/* 0000xx00 -> 000000xx */ | 
					
						
							|  |  |  | 		" addi    -8,%1,%1\n" | 
					
						
							|  |  |  | 		" extru,<>  %0,31,4,%%r0\n" | 
					
						
							|  |  |  | 		" extru,TR  %0,27,4,%0\n"	/* 000000x0 -> 0000000x */ | 
					
						
							|  |  |  | 		" addi    -4,%1,%1\n" | 
					
						
							|  |  |  | 		" extru,<>  %0,31,2,%%r0\n" | 
					
						
							|  |  |  | 		" extru,TR  %0,29,2,%0\n"	/* 0000000y, 1100b -> 0011b */ | 
					
						
							|  |  |  | 		" addi    -2,%1,%1\n" | 
					
						
							|  |  |  | 		" extru,=  %0,31,1,%%r0\n"	/* check last bit */ | 
					
						
							|  |  |  | 		" addi    -1,%1,%1\n" | 
					
						
							|  |  |  | 			: "+r" (x), "=r" (ret) ); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | #include <asm-generic/bitops/ffz.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set) | 
					
						
							|  |  |  |  * This is defined the same way as the libc and compiler builtin | 
					
						
							|  |  |  |  * ffs routines, therefore differs in spirit from the above ffz (man ffs). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static __inline__ int ffs(int x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return x ? (__ffs((unsigned long)x) + 1) : 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * fls: find last (most significant) bit set. | 
					
						
							|  |  |  |  * fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static __inline__ int fls(int x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 	if (!x) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	__asm__( | 
					
						
							|  |  |  | 	"	ldi		1,%1\n" | 
					
						
							|  |  |  | 	"	extru,<>	%0,15,16,%%r0\n" | 
					
						
							|  |  |  | 	"	zdep,TR		%0,15,16,%0\n"		/* xxxx0000 */ | 
					
						
							|  |  |  | 	"	addi		16,%1,%1\n" | 
					
						
							|  |  |  | 	"	extru,<>	%0,7,8,%%r0\n" | 
					
						
							|  |  |  | 	"	zdep,TR		%0,23,24,%0\n"		/* xx000000 */ | 
					
						
							|  |  |  | 	"	addi		8,%1,%1\n" | 
					
						
							|  |  |  | 	"	extru,<>	%0,3,4,%%r0\n" | 
					
						
							|  |  |  | 	"	zdep,TR		%0,27,28,%0\n"		/* x0000000 */ | 
					
						
							|  |  |  | 	"	addi		4,%1,%1\n" | 
					
						
							|  |  |  | 	"	extru,<>	%0,1,2,%%r0\n" | 
					
						
							|  |  |  | 	"	zdep,TR		%0,29,30,%0\n"		/* y0000000 (y&3 = 0) */ | 
					
						
							|  |  |  | 	"	addi		2,%1,%1\n" | 
					
						
							|  |  |  | 	"	extru,=		%0,0,1,%%r0\n" | 
					
						
							|  |  |  | 	"	addi		1,%1,%1\n"		/* if y & 8, add 1 */ | 
					
						
							|  |  |  | 		: "+r" (x), "=r" (ret) ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-15 18:31:49 +01:00
										 |  |  | #include <asm-generic/bitops/__fls.h>
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | #include <asm-generic/bitops/fls64.h>
 | 
					
						
							|  |  |  | #include <asm-generic/bitops/hweight.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:06:39 -07:00
										 |  |  | #include <asm-generic/bitops/lock.h>
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | #include <asm-generic/bitops/sched.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __KERNEL__ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | #include <asm-generic/bitops/find.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							| 
									
										
										
											
												[PATCH] bitops: parisc: use generic bitops
- remove __{,test_and_}{set,clear,change}_bit() and test_bit()
- remove ffz()
- remove generic_fls64()
- remove generic_hweight{32,16,8}()
- remove generic_hweight64()
- remove sched_find_first_bit()
- remove find_{next,first}{,_zero}_bit()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2006-03-26 01:39:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												bitops: introduce little-endian bitops for most architectures
Introduce little-endian bit operations to the big-endian architectures
which do not have native little-endian bit operations and the
little-endian architectures.  (alpha, avr32, blackfin, cris, frv, h8300,
ia64, m32r, mips, mn10300, parisc, sh, sparc, tile, x86, xtensa)
These architectures can just include generic implementation
(asm-generic/bitops/le.h).
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Mikael Starvik <starvik@axis.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Matthew Wilcox <willy@debian.org>
Cc: Grant Grundler <grundler@parisc-linux.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Chris Zankel <chris@zankel.net>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Acked-by: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
											
										 
											2011-03-23 16:42:02 -07:00
										 |  |  | #include <asm-generic/bitops/le.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-26 16:09:04 -07:00
										 |  |  | #include <asm-generic/bitops/ext2-atomic-setbit.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-21 22:45:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif	/* __KERNEL__ */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* _PARISC_BITOPS_H */
 |