cregit-Linux how code gets into the kernel

Release 4.10 tools/testing/radix-tree/linux/bitops/fls64.h

#ifndef _ASM_GENERIC_BITOPS_FLS64_H_

#define _ASM_GENERIC_BITOPS_FLS64_H_

#include <asm/types.h>


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

Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox35100.00%1100.00%
Total35100.00%1100.00%

#endif /* _ASM_GENERIC_BITOPS_FLS64_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
matthew wilcoxmatthew wilcox47100.00%1100.00%
Total47100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.