mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
x86: fix new find_first_bit()
Some edge problems with the original C rewrite. Thanks go to Cal Peake, who pinpointed the breakage to the rewrite, and tested this fixed version. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
33ac02aa4c
commit
d6d2a2ab05
@ -335,14 +335,13 @@ static inline unsigned long __ffs(unsigned long word)
|
||||
static inline int find_first_bit(const unsigned long *addr, unsigned size)
|
||||
{
|
||||
int x = 0;
|
||||
do {
|
||||
if (*addr)
|
||||
return __ffs(*addr) + x;
|
||||
addr++;
|
||||
if (x >= size)
|
||||
break;
|
||||
|
||||
while (x < size) {
|
||||
unsigned long val = *addr++;
|
||||
if (val)
|
||||
return __ffs(val) + x;
|
||||
x += (sizeof(*addr)<<3);
|
||||
} while (1);
|
||||
}
|
||||
return x;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user