Commit 521fe8bb authored by Toke Høiland-Jørgensen's avatar Toke Høiland-Jørgensen Committed by Alexei Starovoitov
Browse files

perf: Use consistent include paths for libbpf



Fix perf to include libbpf header files with the bpf/ prefix, to
be consistent with external users of the library.

Signed-off-by: default avatarToke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Acked-by: default avatarAndrii Nakryiko <andriin@fb.com>
Link: https://lore.kernel.org/bpf/157952560797.1683545.7685921032671386301.stgit@toke.dk
parent 229c3b47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
   Copyright (C) 2018 Red Hat, Inc., Arnaldo Carvalho de Melo <acme@redhat.com>
*/

#include <bpf.h>
#include <bpf/bpf.h>

int probe(hrtimer_nanosleep, rqtp->tv_sec)(void *ctx, int err, long sec)
{
+1 −1
Original line number Diff line number Diff line
#include <bpf.h>
#include <bpf/bpf.h>

license(GPL);
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * the return value.
 */

#include <bpf.h>
#include <bpf/bpf.h>

struct syscall_enter_openat_args {
	unsigned long long unused;
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
#ifndef _PERF_BPF_PID_FILTER_
#define _PERF_BPF_PID_FILTER_

#include <bpf.h>
#include <bpf/bpf.h>

#define pid_filter(name) pid_map(name, bool)

+1 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0

#include <bpf.h>
#include <bpf/bpf.h>

struct bpf_map SEC("maps") __bpf_stdout__ = {
       .type = BPF_MAP_TYPE_PERF_EVENT_ARRAY,
Loading