diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-21 16:30:29 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-08-22 22:16:56 +0200 |
commit | 7646602401e6f45e4013ddb7c41f6bc211032d02 (patch) | |
tree | 34c4df6304675b4ec3f00c168d6c6c0a1cfcc742 /tools/perf/util/evsel.h | |
parent | perf metricgroup: Remove needless includes from metricgroup.h (diff) | |
download | linux-7646602401e6f45e4013ddb7c41f6bc211032d02.tar.xz linux-7646602401e6f45e4013ddb7c41f6bc211032d02.zip |
perf evsel: Move xyarray.h from evsel.c to evsel.h to reduce include dep tree
All we need in util/evsel.h is the foward declaration of 'struct
xyarray', not the internal/xyarray.h, that can be moved to util/evsel.c
and then we reduce the header dependency tree.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-wwqce6ixwcyq6yzx3ljrdm80@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.h')
-rw-r--r-- | tools/perf/util/evsel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h index efe08065838f..2928eee78427 100644 --- a/tools/perf/util/evsel.h +++ b/tools/perf/util/evsel.h @@ -8,7 +8,6 @@ #include <linux/perf_event.h> #include <linux/types.h> #include <internal/evsel.h> -#include <internal/xyarray.h> #include "symbol_conf.h" #include "cpumap.h" #include "counts.h" @@ -93,6 +92,7 @@ enum perf_tool_event { }; struct bpf_object; +struct xyarray; /** struct evsel - event selector * |