1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_GENERIC_BITOPS_SCHED_H_
3 #define _ASM_GENERIC_BITOPS_SCHED_H_
5 #include <linux/compiler.h> /* unlikely() */
9 * Every architecture must define this function. It's the fastest
10 * way of searching a 100-bit bitmap. It's guaranteed that at least
11 * one of the 100 bits is cleared.
13 static inline int sched_find_first_bit(const unsigned long *b
)
15 #if BITS_PER_LONG == 64
18 return __ffs(b
[1]) + 64;
19 #elif BITS_PER_LONG == 32
23 return __ffs(b
[1]) + 32;
25 return __ffs(b
[2]) + 64;
26 return __ffs(b
[3]) + 96;
28 #error BITS_PER_LONG not defined
32 #endif /* _ASM_GENERIC_BITOPS_SCHED_H_ */