mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
9c51f8788b
Add variants of perf_env__insert_bpf_prog_info(), perf_env__insert_btf()
and perf_env__find_btf prefixed with __ to indicate the
env->bpf_progs.lock is assumed held.
Call these variants when the lock is held to avoid recursively taking it
and potentially having a thread deadlock with itself.
Fixes: f8dfeae009
("perf bpf: Show more BPF program info in print_bpf_prog_info()")
Signed-off-by: Ian Rogers <irogers@google.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: Song Liu <song@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Huacai Chen <chenhuacai@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: K Prateek Nayak <kprateek.nayak@amd.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Ming Wang <wangming01@loongson.cn>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Link: https://lore.kernel.org/r/20231207014655.1252484-1-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
60 lines
1.4 KiB
C
60 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_BPF_EVENT_H
|
|
#define __PERF_BPF_EVENT_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/rbtree.h>
|
|
#include <api/fd/array.h>
|
|
#include <stdio.h>
|
|
|
|
struct bpf_prog_info;
|
|
struct machine;
|
|
union perf_event;
|
|
struct perf_env;
|
|
struct perf_sample;
|
|
struct perf_session;
|
|
struct record_opts;
|
|
struct evlist;
|
|
struct target;
|
|
|
|
struct bpf_prog_info_node {
|
|
struct perf_bpil *info_linear;
|
|
struct rb_node rb_node;
|
|
};
|
|
|
|
struct btf_node {
|
|
struct rb_node rb_node;
|
|
u32 id;
|
|
u32 data_size;
|
|
char data[];
|
|
};
|
|
|
|
#ifdef HAVE_LIBBPF_SUPPORT
|
|
int machine__process_bpf(struct machine *machine, union perf_event *event,
|
|
struct perf_sample *sample);
|
|
int evlist__add_bpf_sb_event(struct evlist *evlist, struct perf_env *env);
|
|
void __bpf_event__print_bpf_prog_info(struct bpf_prog_info *info,
|
|
struct perf_env *env,
|
|
FILE *fp);
|
|
#else
|
|
static inline int machine__process_bpf(struct machine *machine __maybe_unused,
|
|
union perf_event *event __maybe_unused,
|
|
struct perf_sample *sample __maybe_unused)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int evlist__add_bpf_sb_event(struct evlist *evlist __maybe_unused,
|
|
struct perf_env *env __maybe_unused)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void __bpf_event__print_bpf_prog_info(struct bpf_prog_info *info __maybe_unused,
|
|
struct perf_env *env __maybe_unused,
|
|
FILE *fp __maybe_unused)
|
|
{
|
|
|
|
}
|
|
#endif // HAVE_LIBBPF_SUPPORT
|
|
#endif
|