at v2.6.34 18 lines 564 B view raw
1#ifndef _PERF_ASM_BITOPS_H_ 2#define _PERF_ASM_BITOPS_H_ 3 4#include <sys/types.h> 5#include "../../types.h" 6#include <linux/compiler.h> 7 8/* CHECKME: Not sure both always match */ 9#define BITS_PER_LONG __WORDSIZE 10 11#include "../../../../include/asm-generic/bitops/__fls.h" 12#include "../../../../include/asm-generic/bitops/fls.h" 13#include "../../../../include/asm-generic/bitops/fls64.h" 14#include "../../../../include/asm-generic/bitops/__ffs.h" 15#include "../../../../include/asm-generic/bitops/ffz.h" 16#include "../../../../include/asm-generic/bitops/hweight.h" 17 18#endif