aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/util/bpf-filter.c
diff options
context:
space:
mode:
authorGravatar Namhyung Kim <namhyung@kernel.org> 2023-07-27 19:24:47 -0700
committerGravatar Arnaldo Carvalho de Melo <acme@redhat.com> 2023-08-03 17:01:24 -0300
commitc7e97f215a4ad634b746804679f5937d25f77e29 (patch)
tree364852ac3ed6373e82a6513572e5fe08ddf0fac9 /tools/perf/util/bpf-filter.c
parentperf build: Update build rule for generated files (diff)
downloadlinux-c7e97f215a4ad634b746804679f5937d25f77e29.tar.gz
linux-c7e97f215a4ad634b746804679f5937d25f77e29.tar.bz2
linux-c7e97f215a4ad634b746804679f5937d25f77e29.zip
perf build: Include generated header files properly
The flex and bison generate header files from the source. When user specified a build directory with O= option, it'd generate files under the directory. The build command has -I option to specify the header include directory. But the -I option only affects the files included like <...>. Let's change the flex and bison headers to use it instead of "...". Fixes: 80eeb67fe577aa76 ("perf jevents: Program to convert JSON file") Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Anup Sharma <anupnewsmail@gmail.com> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20230728022447.1323563-2-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/bpf-filter.c')
-rw-r--r--tools/perf/util/bpf-filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/bpf-filter.c b/tools/perf/util/bpf-filter.c
index 0b30688d78a7..47f01df658d9 100644
--- a/tools/perf/util/bpf-filter.c
+++ b/tools/perf/util/bpf-filter.c
@@ -9,8 +9,8 @@
#include "util/evsel.h"
#include "util/bpf-filter.h"
-#include "util/bpf-filter-flex.h"
-#include "util/bpf-filter-bison.h"
+#include <util/bpf-filter-flex.h>
+#include <util/bpf-filter-bison.h>
#include "bpf_skel/sample-filter.h"
#include "bpf_skel/sample_filter.skel.h"