Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tools: Move hash.h header

Put it into tools/include/ for general usage.

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Robert Richter <rric@kernel.org>
Link: http://lkml.kernel.org/r/1391611914-26054-3-git-send-email-bp@alien8.de
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Borislav Petkov and committed by
Arnaldo Carvalho de Melo
0e55fa11 cd0cfad7

+7 -6
+5
tools/include/linux/hash.h
··· 1 + #include "../../../include/linux/hash.h" 2 + 3 + #ifndef _TOOLS_LINUX_HASH_H 4 + #define _TOOLS_LINUX_HASH_H 5 + #endif
+1
tools/perf/MANIFEST
··· 6 6 tools/lib/symbol/kallsyms.h 7 7 tools/include/asm/bug.h 8 8 tools/include/linux/compiler.h 9 + tools/include/linux/hash.h 9 10 include/linux/const.h 10 11 include/linux/perf_event.h 11 12 include/linux/rbtree.h
+1 -1
tools/perf/Makefile.perf
··· 208 208 LIB_H += ../../include/linux/rbtree.h 209 209 LIB_H += ../../include/linux/list.h 210 210 LIB_H += ../../include/uapi/linux/const.h 211 - LIB_H += ../../include/linux/hash.h 211 + LIB_H += ../include/linux/hash.h 212 212 LIB_H += ../../include/linux/stringify.h 213 213 LIB_H += util/include/linux/bitmap.h 214 214 LIB_H += util/include/linux/bitops.h
-5
tools/perf/util/include/linux/hash.h
··· 1 - #include "../../../../include/linux/hash.h" 2 - 3 - #ifndef PERF_HASH_H 4 - #define PERF_HASH_H 5 - #endif