Skip to content

Commit

Permalink
[PATCH] bitops: generic fls64()
Browse files Browse the repository at this point in the history
This patch introduces the C-language equivalent of the function: int
fls64(__u64 x);

In include/asm-generic/bitops/fls64.h

This code largely copied from: include/linux/bitops.h

Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Mar 26, 2006
1 parent 136abb3 commit 2dfc383
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions include/asm-generic/bitops/fls64.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef _ASM_GENERIC_BITOPS_FLS64_H_
#define _ASM_GENERIC_BITOPS_FLS64_H_

static inline int fls64(__u64 x)
{
__u32 h = x >> 32;
if (h)
return fls(h) + 32;
return fls(x);
}

#endif /* _ASM_GENERIC_BITOPS_FLS64_H_ */

0 comments on commit 2dfc383

Please sign in to comment.