cregit-Linux how code gets into the kernel

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

#ifndef _ASM_GENERIC_BITOPS_FIND_H_

#define _ASM_GENERIC_BITOPS_FIND_H_

extern unsigned long find_next_bit(const unsigned long *addr, unsigned long
		size, unsigned long offset);

extern unsigned long find_next_zero_bit(const unsigned long *addr, unsigned
		long size, unsigned long offset);


#define find_first_bit(addr, size) find_next_bit((addr), (size), 0)

#define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)

#endif /*_ASM_GENERIC_BITOPS_FIND_H_ */

Overall Contributors

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