diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-10-26 17:24:27 -0300 | 
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-10-31 11:06:41 -0300 | 
| commit | 9823147da6c893d9295949e5ed982a8630deb6db (patch) | |
| tree | 4bd9a6b2e03f9a0cb69a684187776b65c139dc5b /tools/perf/tests/openat-syscall-tp-fields.c | |
| parent | 08043330167f1e21abe60ff7e124ed87d4fd029d (diff) | |
perf tools: Move 'struct perf_sample' to a separate header file to disentangle headers
Some places were including event.h just to get 'struct perf_sample',
move it to a separate place so that we speed up a bit the build.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/openat-syscall-tp-fields.c')
| -rw-r--r-- | tools/perf/tests/openat-syscall-tp-fields.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/tools/perf/tests/openat-syscall-tp-fields.c b/tools/perf/tests/openat-syscall-tp-fields.c index a7b2800652e4..888df8eca981 100644 --- a/tools/perf/tests/openat-syscall-tp-fields.c +++ b/tools/perf/tests/openat-syscall-tp-fields.c @@ -14,6 +14,7 @@  #include "util/mmap.h"  #include <errno.h>  #include <perf/mmap.h> +#include "util/sample.h"  #ifndef O_DIRECTORY  #define O_DIRECTORY    00200000 | 
