[PATCH] ide: fix the HPT366 driver layer
[linux-2.6/suspend2-2.6.18.git] / include / asm-generic / bitops.h
blobce31b739fd80ff211e5583cf4b2c6cc762f6a037
1 #ifndef _ASM_GENERIC_BITOPS_H_
2 #define _ASM_GENERIC_BITOPS_H_
4 /*
5 * For the benefit of those who are trying to port Linux to another
6 * architecture, here are some C-language equivalents. You should
7 * recode these in the native assembly language, if at all possible.
8 * To guarantee atomicity, these routines call cli() and sti() to
9 * disable interrupts while they operate. (You have to provide inline
10 * routines to cli() and sti().)
12 * Also note, these routines assume that you have 32 bit longs.
13 * You will have to change this if you are trying to port Linux to the
14 * Alpha architecture or to a Cray. :-)
16 * C language equivalents written by Theodore Ts'o, 9/26/92
19 extern __inline__ int set_bit(int nr,long * addr)
21 int mask, retval;
23 addr += nr >> 5;
24 mask = 1 << (nr & 0x1f);
25 cli();
26 retval = (mask & *addr) != 0;
27 *addr |= mask;
28 sti();
29 return retval;
32 extern __inline__ int clear_bit(int nr, long * addr)
34 int mask, retval;
36 addr += nr >> 5;
37 mask = 1 << (nr & 0x1f);
38 cli();
39 retval = (mask & *addr) != 0;
40 *addr &= ~mask;
41 sti();
42 return retval;
45 extern __inline__ int test_bit(int nr, const unsigned long * addr)
47 int mask;
49 addr += nr >> 5;
50 mask = 1 << (nr & 0x1f);
51 return ((mask & *addr) != 0);
55 * fls: find last bit set.
58 #define fls(x) generic_fls(x)
60 #ifdef __KERNEL__
63 * ffs: find first bit set. This is defined the same way as
64 * the libc and compiler builtin ffs routines, therefore
65 * differs in spirit from the above ffz (man ffs).
68 #define ffs(x) generic_ffs(x)
71 * hweightN: returns the hamming weight (i.e. the number
72 * of bits set) of a N-bit word
75 #define hweight32(x) generic_hweight32(x)
76 #define hweight16(x) generic_hweight16(x)
77 #define hweight8(x) generic_hweight8(x)
79 #endif /* __KERNEL__ */
81 #endif /* _ASM_GENERIC_BITOPS_H */