diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-04-30 18:31:12 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-02 11:00:44 -0400 |
| commit | fb72014d98afd51e85aab9c061344ef32d615606 (patch) | |
| tree | 18713d4d1084870c604b512396b893944a2bbdab /tools/perf/util/include/asm | |
| parent | bc4b473f1aa2ef785ccfd890a24a1de5a6660f98 (diff) | |
perf tools: Don't use code surrounded by __KERNEL__
We need to refactor code to be explicitely shared by the kernel and at
least the tools/ userspace programs, so, till we do that, copy the bare
minimum bitmap/bitops code needed by tools/perf.
Reported-by: "H. Peter Anvin" <hpa@zytor.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/include/asm')
| -rw-r--r-- | tools/perf/util/include/asm/bitops.h | 18 | ||||
| -rw-r--r-- | tools/perf/util/include/asm/hweight.h | 8 |
2 files changed, 8 insertions, 18 deletions
diff --git a/tools/perf/util/include/asm/bitops.h b/tools/perf/util/include/asm/bitops.h deleted file mode 100644 index 58e9817ffae0..000000000000 --- a/tools/perf/util/include/asm/bitops.h +++ /dev/null | |||
| @@ -1,18 +0,0 @@ | |||
| 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 | ||
diff --git a/tools/perf/util/include/asm/hweight.h b/tools/perf/util/include/asm/hweight.h new file mode 100644 index 000000000000..36cf26d434a5 --- /dev/null +++ b/tools/perf/util/include/asm/hweight.h | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | #ifndef PERF_HWEIGHT_H | ||
| 2 | #define PERF_HWEIGHT_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | unsigned int hweight32(unsigned int w); | ||
| 6 | unsigned long hweight64(__u64 w); | ||
| 7 | |||
| 8 | #endif /* PERF_HWEIGHT_H */ | ||
