diff options
author | Alexei Starovoitov <ast@kernel.org> | 2021-07-20 17:08:22 -0700 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2021-07-26 12:29:14 -0700 |
commit | b0588390dbcedcd74fab6ffb8afe8d52380fd8b6 (patch) | |
tree | 1a4ef59e764121dc2cacab734953201e787ece9c /tools/lib/bpf/Build | |
parent | 301ba4d710284e088d278adc477b7edad834577f (diff) |
libbpf: Split CO-RE logic into relo_core.c.
Move CO-RE logic into separate file.
The internal interface between libbpf and CO-RE is through
bpf_core_apply_relo_insn() function and few structs defined in relo_core.h.
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210721000822.40958-5-alexei.starovoitov@gmail.com
Diffstat (limited to 'tools/lib/bpf/Build')
-rw-r--r-- | tools/lib/bpf/Build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/Build b/tools/lib/bpf/Build index 430f6874fa417..94f0a146bb7b9 100644 --- a/tools/lib/bpf/Build +++ b/tools/lib/bpf/Build @@ -1,3 +1,3 @@ libbpf-y := libbpf.o bpf.o nlattr.o btf.o libbpf_errno.o str_error.o \ netlink.o bpf_prog_linfo.o libbpf_probes.o xsk.o hashmap.o \ - btf_dump.o ringbuf.o strset.o linker.o gen_loader.o + btf_dump.o ringbuf.o strset.o linker.o gen_loader.o relo_core.o |