]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
perf annotate: Remove lots of headers from annotate.h
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 22 Jan 2019 12:47:38 +0000 (10:47 -0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 25 Jan 2019 14:12:08 +0000 (15:12 +0100)
To reduce the chances changes trigger tons of rebuilds, more to come.

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-ytbykaku63862guk7muflcy4@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/gtk/annotate.c
tools/perf/util/annotate.h
tools/perf/util/stat-display.c

index 48428c9acd89e59149a53a12e5d4ee3123e4ef98..f22a7d142adad3cf075845bc18a1829d75e7e2d2 100644 (file)
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 #include "gtk.h"
+#include "util/sort.h"
 #include "util/debug.h"
 #include "util/annotate.h"
 #include "util/evsel.h"
index fb6463730ba48d0651e58ed2f206c8181845b4ae..95053cab41fe08f8e43e277b3ac55e142f077c15 100644 (file)
@@ -4,16 +4,24 @@
 
 #include <stdbool.h>
 #include <stdint.h>
+#include <stdio.h>
 #include <linux/types.h>
-#include "symbol.h"
-#include "hist.h"
-#include "sort.h"
 #include <linux/list.h>
 #include <linux/rbtree.h>
 #include <pthread.h>
 #include <asm/bug.h>
+#include "symbol_conf.h"
 
+struct hist_browser_timer;
+struct hist_entry;
 struct ins_ops;
+struct map;
+struct map_symbol;
+struct addr_map_symbol;
+struct option;
+struct perf_sample;
+struct perf_evsel;
+struct symbol;
 
 struct ins {
        const char     *name;
index 665ee374fc012fbc57d13aade71aed152a05d77c..6d043c78f3c20578e864df0a4313eda399340e46 100644 (file)
@@ -2,6 +2,7 @@
 #include <inttypes.h>
 #include <linux/time64.h>
 #include <math.h>
+#include "color.h"
 #include "evlist.h"
 #include "evsel.h"
 #include "stat.h"