perf event: Remove needless include directives from event.h

bpf.h and build-id.h are not needed at all in event.h, remove them.

And fixup the fallout of files that were getting needed stuff from this
now pruned include.

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-rdm3dgtlrndmmnlc4bafsg3b@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent b6b5574b
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
#include <elfutils/libdwfl.h> #include <elfutils/libdwfl.h>
#include <linux/kernel.h>
#include "../../util/unwind-libdw.h" #include "../../util/unwind-libdw.h"
#include "../../util/perf_regs.h" #include "../../util/perf_regs.h"
#include "../../util/event.h" #include "../../util/event.h"
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
#include <regex.h> #include <regex.h>
#include <linux/kernel.h>
#include <linux/zalloc.h> #include <linux/zalloc.h>
#include "../../perf-sys.h" #include "../../perf-sys.h"
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include "builtin.h" #include "builtin.h"
#include "perf.h" #include "perf.h"
#include "util/build-id.h"
#include "util/cache.h" #include "util/cache.h"
#include "util/env.h" #include "util/env.h"
#include <subcmd/exec-cmd.h> #include <subcmd/exec-cmd.h>
......
...@@ -13,6 +13,7 @@ struct machine; ...@@ -13,6 +13,7 @@ struct machine;
union perf_event; union perf_event;
struct perf_env; struct perf_env;
struct perf_sample; struct perf_sample;
struct perf_session;
struct record_opts; struct record_opts;
struct evlist; struct evlist;
struct target; struct target;
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include "map_symbol.h" #include "map_symbol.h"
#include "branch.h" #include "branch.h"
struct evsel;
struct map; struct map;
#define HELP_PAD "\t\t\t\t" #define HELP_PAD "\t\t\t\t"
......
...@@ -17,6 +17,8 @@ ...@@ -17,6 +17,8 @@
#include "util/event.h" /* proc_map_timeout */ #include "util/event.h" /* proc_map_timeout */
#include "util/hist.h" /* perf_hist_config */ #include "util/hist.h" /* perf_hist_config */
#include "util/llvm-utils.h" /* perf_llvm_config */ #include "util/llvm-utils.h" /* perf_llvm_config */
#include "build-id.h"
#include "debug.h"
#include "config.h" #include "config.h"
#include "debug.h" #include "debug.h"
#include <sys/types.h> #include <sys/types.h>
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <api/debug.h> #include <api/debug.h>
#include <linux/kernel.h>
#include <linux/time64.h> #include <linux/time64.h>
#ifdef HAVE_BACKTRACE_SUPPORT #ifdef HAVE_BACKTRACE_SUPPORT
#include <execinfo.h> #include <execinfo.h>
......
/* SPDX-License-Identifier: GPL-2.0 */ /* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PERF_RECORD_H #ifndef __PERF_RECORD_H
#define __PERF_RECORD_H #define __PERF_RECORD_H
/*
#include <limits.h> * The linux/stddef.h isn't need here, but is needed for __always_inline used
* in files included from uapi/linux/perf_event.h such as
* /usr/include/linux/swab.h and /usr/include/linux/byteorder/little_endian.h,
* detected in at least musl libc, used in Alpine Linux. -acme
*/
#include <stdio.h> #include <stdio.h>
#include <linux/kernel.h> #include <linux/stddef.h>
#include <linux/bpf.h>
#include <linux/perf_event.h>
#include <perf/event.h> #include <perf/event.h>
#include <linux/types.h>
#include "build-id.h"
#include "perf_regs.h" #include "perf_regs.h"
struct dso;
struct machine;
struct perf_event_attr;
#ifdef __LP64__ #ifdef __LP64__
/* /*
* /usr/include/inttypes.h uses just 'lu' for PRIu64, but we end up defining * /usr/include/inttypes.h uses just 'lu' for PRIu64, but we end up defining
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment