diff options
author | Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp> | 2010-01-30 20:43:24 +0900 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-01-31 08:27:53 +0100 |
commit | 18e97e06b5fb2d7f6cf272ca07d26d8247db8723 (patch) | |
tree | 4f6206a8d5a23f27581cbe616f441a56d5aae206 /tools/perf/Makefile | |
parent | 86d8d29634de4464d568e7c335c0da6cba64e8ab (diff) | |
download | linux-18e97e06b5fb2d7f6cf272ca07d26d8247db8723.tar.gz linux-18e97e06b5fb2d7f6cf272ca07d26d8247db8723.tar.bz2 linux-18e97e06b5fb2d7f6cf272ca07d26d8247db8723.zip |
perf: Add util/include/linuxhash.h to include hash.h of kernel
linux/hash.h, hash header of kernel, is also useful for perf.
util/include/linuxhash.h includes linux/hash.h, so we can use
hash facilities (e.g. hash_long()) in perf now.
Signed-off-by: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <1264851813-8413-3-git-send-email-mitake@dcl.info.waseda.ac.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 9b173e66fb41..b2bce1fb4ae1 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -333,6 +333,7 @@ LIB_FILE=libperf.a LIB_H += ../../include/linux/perf_event.h LIB_H += ../../include/linux/rbtree.h LIB_H += ../../include/linux/list.h +LIB_H += ../../include/linux/hash.h LIB_H += ../../include/linux/stringify.h LIB_H += util/include/linux/bitmap.h LIB_H += util/include/linux/bitops.h |