diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-10-27 21:49:58 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-10-31 15:06:46 +0100 |
commit | 628d69995e66343266475e6afc76192f5878b605 (patch) | |
tree | 7959406fb973db3a7c29bcafb2325c172ba3b380 /tools/perf/builtin-kwork.c | |
parent | perf tools: Move 'struct perf_sample' to a separate header file to disentangl... (diff) | |
download | linux-628d69995e66343266475e6afc76192f5878b605.tar.xz linux-628d69995e66343266475e6afc76192f5878b605.zip |
perf kwork: Remove includes not needed in kwork.h
Leave just some forward declarations for pointers, move the includes to
where they are really needed.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-kwork.c')
-rw-r--r-- | tools/perf/builtin-kwork.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/builtin-kwork.c b/tools/perf/builtin-kwork.c index fb8c63656ad8..4ffbf5908070 100644 --- a/tools/perf/builtin-kwork.c +++ b/tools/perf/builtin-kwork.c @@ -6,10 +6,15 @@ */ #include "builtin.h" +#include "perf.h" #include "util/data.h" +#include "util/evlist.h" +#include "util/evsel.h" +#include "util/header.h" #include "util/kwork.h" #include "util/debug.h" +#include "util/session.h" #include "util/symbol.h" #include "util/thread.h" #include "util/string2.h" @@ -21,6 +26,7 @@ #include <errno.h> #include <inttypes.h> +#include <signal.h> #include <linux/err.h> #include <linux/time64.h> #include <linux/zalloc.h> |