1 /* find_next_bit.c: fallback find next bit implementation
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/bitops.h>
13 #include <linux/module.h>
14 #include <asm/types.h>
15 #include <asm/byteorder.h>
17 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
20 * find_next_bit - find the next set bit in a memory region
21 * @addr: The address to base the search on
22 * @offset: The bitnumber to start searching at
23 * @size: The maximum size to search
25 unsigned long find_next_bit(const unsigned long *addr
, unsigned long size
,
28 const unsigned long *p
= addr
+ BITOP_WORD(offset
);
29 unsigned long result
= offset
& ~(BITS_PER_LONG
-1);
35 offset
%= BITS_PER_LONG
;
38 tmp
&= (~0UL << offset
);
39 if (size
< BITS_PER_LONG
)
43 size
-= BITS_PER_LONG
;
44 result
+= BITS_PER_LONG
;
46 while (size
& ~(BITS_PER_LONG
-1)) {
49 result
+= BITS_PER_LONG
;
50 size
-= BITS_PER_LONG
;
57 tmp
&= (~0UL >> (BITS_PER_LONG
- size
));
58 if (tmp
== 0UL) /* Are any bits set? */
59 return result
+ size
; /* Nope. */
61 return result
+ __ffs(tmp
);
64 EXPORT_SYMBOL(find_next_bit
);
67 * This implementation of find_{first,next}_zero_bit was stolen from
68 * Linus' asm-alpha/bitops.h.
70 unsigned long find_next_zero_bit(const unsigned long *addr
, unsigned long size
,
73 const unsigned long *p
= addr
+ BITOP_WORD(offset
);
74 unsigned long result
= offset
& ~(BITS_PER_LONG
-1);
80 offset
%= BITS_PER_LONG
;
83 tmp
|= ~0UL >> (BITS_PER_LONG
- offset
);
84 if (size
< BITS_PER_LONG
)
88 size
-= BITS_PER_LONG
;
89 result
+= BITS_PER_LONG
;
91 while (size
& ~(BITS_PER_LONG
-1)) {
94 result
+= BITS_PER_LONG
;
95 size
-= BITS_PER_LONG
;
103 if (tmp
== ~0UL) /* Are any bits zero? */
104 return result
+ size
; /* Nope. */
106 return result
+ ffz(tmp
);
109 EXPORT_SYMBOL(find_next_zero_bit
);
113 /* include/linux/byteorder does not support "unsigned long" type */
114 static inline unsigned long ext2_swabp(const unsigned long * x
)
116 #if BITS_PER_LONG == 64
117 return (unsigned long) __swab64p((u64
*) x
);
118 #elif BITS_PER_LONG == 32
119 return (unsigned long) __swab32p((u32
*) x
);
121 #error BITS_PER_LONG not defined
125 /* include/linux/byteorder doesn't support "unsigned long" type */
126 static inline unsigned long ext2_swab(const unsigned long y
)
128 #if BITS_PER_LONG == 64
129 return (unsigned long) __swab64((u64
) y
);
130 #elif BITS_PER_LONG == 32
131 return (unsigned long) __swab32((u32
) y
);
133 #error BITS_PER_LONG not defined
137 unsigned long generic_find_next_zero_le_bit(const unsigned long *addr
, unsigned
138 long size
, unsigned long offset
)
140 const unsigned long *p
= addr
+ BITOP_WORD(offset
);
141 unsigned long result
= offset
& ~(BITS_PER_LONG
- 1);
147 offset
&= (BITS_PER_LONG
- 1UL);
149 tmp
= ext2_swabp(p
++);
150 tmp
|= (~0UL >> (BITS_PER_LONG
- offset
));
151 if (size
< BITS_PER_LONG
)
155 size
-= BITS_PER_LONG
;
156 result
+= BITS_PER_LONG
;
159 while (size
& ~(BITS_PER_LONG
- 1)) {
161 goto found_middle_swap
;
162 result
+= BITS_PER_LONG
;
163 size
-= BITS_PER_LONG
;
170 if (tmp
== ~0UL) /* Are any bits zero? */
171 return result
+ size
; /* Nope. Skip ffz */
173 return result
+ ffz(tmp
);
176 return result
+ ffz(ext2_swab(tmp
));
179 EXPORT_SYMBOL(generic_find_next_zero_le_bit
);
181 #endif /* __BIG_ENDIAN */