The util/event.h includes util/build-id.h only for BUILD_ID_SIZE. This is a problem when I include util/event.h from util/tool.h which is also included by util/build-id.h since it now makes a circular dependency resulting in incomplete type error.
Signed-off-by: Namhyung Kim <namhy...@kernel.org> --- tools/perf/perf.h | 1 + tools/perf/util/build-id.h | 2 -- tools/perf/util/dso.h | 1 + tools/perf/util/event.h | 1 - 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/perf/perf.h b/tools/perf/perf.h index 192d936020ea..1f12336ca5a8 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h @@ -30,6 +30,7 @@ static inline unsigned long long rdclock(void) } #define MAX_NR_CPUS 1024 +#define BUILD_ID_SIZE 20 extern const char *input_name; extern bool perf_host, perf_guest; diff --git a/tools/perf/util/build-id.h b/tools/perf/util/build-id.h index 85011222cc14..e71304c9c86f 100644 --- a/tools/perf/util/build-id.h +++ b/tools/perf/util/build-id.h @@ -1,8 +1,6 @@ #ifndef PERF_BUILD_ID_H_ #define PERF_BUILD_ID_H_ 1 -#define BUILD_ID_SIZE 20 - #include "tool.h" #include "strlist.h" #include <linux/types.h> diff --git a/tools/perf/util/dso.h b/tools/perf/util/dso.h index de9d98c44ae2..aa1f503c30bf 100644 --- a/tools/perf/util/dso.h +++ b/tools/perf/util/dso.h @@ -7,6 +7,7 @@ #include <linux/types.h> #include <linux/bitops.h> #include "map.h" +#include "perf.h" #include "build-id.h" enum dso_binary_type { diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 97179abc80a1..40e02544f861 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -6,7 +6,6 @@ #include "../perf.h" #include "map.h" -#include "build-id.h" #include "perf_regs.h" struct mmap_event { -- 2.4.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/