aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2019-08-22 14:35:55 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-08-26 08:36:25 -0300
commit38b7b678fe989f9c403c001d96887939aaa1b68a (patch)
tree1efa00bcdcc485d2af3d9cb938277a935c156679
parentperf cpumap: No need to include perf.h, ditch it (diff)
downloadlinux-dev-38b7b678fe989f9c403c001d96887939aaa1b68a.tar.xz
linux-dev-38b7b678fe989f9c403c001d96887939aaa1b68a.zip
perf stat: Remove needless headers from stat.h
Just a forward declaration for 'struct timespec' is needed, ditch the rest. 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-6shdqw801oqe7ax6r307k27r@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/util/stat.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/perf/util/stat.h b/tools/perf/util/stat.h
index bcb376e1b3a7..9e425ecd82d9 100644
--- a/tools/perf/util/stat.h
+++ b/tools/perf/util/stat.h
@@ -5,13 +5,12 @@
#include <linux/types.h>
#include <stdio.h>
#include <sys/types.h>
-#include <sys/time.h>
#include <sys/resource.h>
-#include <sys/wait.h>
#include "rblist.h"
-#include "perf.h"
#include "event.h"
+struct timespec;
+
struct stats {
double n, mean, M2;
u64 max, min;