diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-22 14:28:42 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-01-25 15:12:09 +0100 |
commit | f0049f2c3ee80d0808efe6fb4400b572e6858cb9 (patch) | |
tree | 0344b1346002009c93a7956cac01767baf00b91d /tools/perf/util/comm.c | |
parent | perf namespaces: Remove namespaces.h from .h headers (diff) | |
download | linux-f0049f2c3ee80d0808efe6fb4400b572e6858cb9.tar.xz linux-f0049f2c3ee80d0808efe6fb4400b572e6858cb9.zip |
perf comm: Remove needless headers from comm.h
There we don't need rbtree, only in comm.c, also ditch perf.h, not
needed at all.
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-vr1jnwwujh99skrgldtimpmu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/comm.c')
-rw-r--r-- | tools/perf/util/comm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/comm.c b/tools/perf/util/comm.c index 31279a7bd919..1066de92af12 100644 --- a/tools/perf/util/comm.c +++ b/tools/perf/util/comm.c @@ -6,6 +6,7 @@ #include <stdio.h> #include <string.h> #include <linux/refcount.h> +#include <linux/rbtree.h> #include "rwsem.h" struct comm_str { |