/Linux-v6.6/tools/lib/bpf/ |
D | gen_loader.c | 565 struct ksym_relo_desc *relo; in bpf_gen__record_extern() local 567 relo = libbpf_reallocarray(gen->relos, gen->relo_cnt + 1, sizeof(*relo)); in bpf_gen__record_extern() 568 if (!relo) { in bpf_gen__record_extern() 572 gen->relos = relo; in bpf_gen__record_extern() 573 relo += gen->relo_cnt; in bpf_gen__record_extern() 574 relo->name = name; in bpf_gen__record_extern() 575 relo->is_weak = is_weak; in bpf_gen__record_extern() 576 relo->is_typeless = is_typeless; in bpf_gen__record_extern() 577 relo->is_ld64 = is_ld64; in bpf_gen__record_extern() 578 relo->kind = kind; in bpf_gen__record_extern() [all …]
|
D | relo_core.c | 264 const struct bpf_core_relo *relo, in bpf_core_parse_spec() argument 274 spec_str = btf__name_by_offset(btf, relo->access_str_off); in bpf_core_parse_spec() 280 spec->root_type_id = relo->type_id; in bpf_core_parse_spec() 281 spec->relo_kind = relo->kind; in bpf_core_parse_spec() 284 if (core_relo_is_type_based(relo->kind)) { in bpf_core_parse_spec() 305 t = skip_mods_and_typedefs(btf, relo->type_id, &id); in bpf_core_parse_spec() 315 if (core_relo_is_enumval_based(relo->kind)) { in bpf_core_parse_spec() 326 if (!core_relo_is_field_based(relo->kind)) in bpf_core_parse_spec() 387 prog_name, relo->type_id, spec_str, i, id, btf_kind_str(t)); in bpf_core_parse_spec() 679 const struct bpf_core_relo *relo, in bpf_core_calc_field_relo() argument [all …]
|
D | relo_core.h | 83 const struct bpf_core_relo *relo, int relo_idx, 90 int insn_idx, const struct bpf_core_relo *relo, 94 const struct bpf_core_relo *relo,
|
D | libbpf.c | 5702 struct reloc_desc *relos, *relo; in record_relo_core() local 5708 relo = &relos[prog->nr_reloc]; in record_relo_core() 5709 relo->type = RELO_CORE; in record_relo_core() 5710 relo->insn_idx = insn_idx; in record_relo_core() 5711 relo->core_relo = core_relo; in record_relo_core() 5719 struct reloc_desc *relo; in find_relo_core() local 5723 relo = &prog->reloc_desc[i]; in find_relo_core() 5724 if (relo->type != RELO_CORE || relo->insn_idx != insn_idx) in find_relo_core() 5727 return relo->core_relo; in find_relo_core() 5734 const struct bpf_core_relo *relo, in bpf_core_resolve_relo() argument [all …]
|
D | linker.c | 840 Elf64_Rel *relo; in linker_sanity_check_elf_relos() local 884 relo = sec->data->d_buf; in linker_sanity_check_elf_relos() 886 for (i = 0; i < n; i++, relo++) { in linker_sanity_check_elf_relos() 887 size_t sym_idx = ELF64_R_SYM(relo->r_info); in linker_sanity_check_elf_relos() 888 size_t sym_type = ELF64_R_TYPE(relo->r_info); in linker_sanity_check_elf_relos() 904 if (relo->r_offset % sizeof(struct bpf_insn) != 0) { in linker_sanity_check_elf_relos()
|
/Linux-v6.6/tools/bpf/bpftool/ |
D | gen.c | 2041 const struct bpf_core_relo *relo; in btfgen_record_obj() local 2078 for_each_btf_ext_rec(seg, sec, relo_idx, relo) { in btfgen_record_obj() 2084 if (relo->kind != BPF_CORE_TYPE_ID_LOCAL && in btfgen_record_obj() 2085 !hashmap__find(cand_cache, relo->type_id, &cands)) { in btfgen_record_obj() 2086 cands = btfgen_find_cands(btf, info->src_btf, relo->type_id); in btfgen_record_obj() 2092 err = hashmap__set(cand_cache, relo->type_id, cands, in btfgen_record_obj() 2098 err = bpf_core_calc_relo_insn(sec_name, relo, relo_idx, btf, cands, in btfgen_record_obj()
|
/Linux-v6.6/Documentation/bpf/ |
D | llvm_reloc.rst | 313 is_signed = relo(s->f, BPF_CORE_FIELD_SIGNED) 314 off = relo(s->f, BPF_CORE_FIELD_BYTE_OFFSET) 315 sz = relo(s->f, BPF_CORE_FIELD_BYTE_SIZE) 316 l = relo(s->f, BPF_CORE_FIELD_LSHIFT_U64) 317 r = relo(s->f, BPF_CORE_FIELD_RSHIFT_U64)
|
/Linux-v6.6/drivers/net/ethernet/netronome/nfp/bpf/ |
D | jit.c | 163 enum nfp_relo_type relo) in emit_br_relo() argument 176 FIELD_PREP(OP_RELO_TYPE, relo); in emit_br_relo() 209 u8 defer, bool set, enum nfp_relo_type relo) in emit_br_bit_relo() argument 230 FIELD_PREP(OP_RELO_TYPE, relo); in emit_br_bit_relo() 634 enum nfp_relo_type relo) in wrp_immed_relo() argument 644 FIELD_PREP(OP_RELO_TYPE, relo); in wrp_immed_relo()
|
/Linux-v6.6/tools/testing/selftests/bpf/ |
D | README.rst | 289 libbpf: ELF relo #0 in section #6 has unexpected type 2 in .../bpf_tcp_nogpl.bpf.o
|
/Linux-v6.6/kernel/bpf/ |
D | btf.c | 8416 int bpf_core_apply(struct bpf_core_ctx *ctx, const struct bpf_core_relo *relo, in bpf_core_apply() argument 8419 bool need_cands = relo->kind != BPF_CORE_TYPE_ID_LOCAL; in bpf_core_apply() 8437 cc = bpf_core_find_cands(ctx, relo->type_id); in bpf_core_apply() 8440 relo->type_id); in bpf_core_apply() 8466 err = bpf_core_calc_relo_insn((void *)ctx->log, relo, relo_idx, ctx->btf, &cands, specs, in bpf_core_apply() 8471 err = bpf_core_patch_insn((void *)ctx->log, insn, relo->insn_off / 8, relo, relo_idx, in bpf_core_apply()
|
/Linux-v6.6/include/linux/ |
D | bpf.h | 2440 int bpf_core_apply(struct bpf_core_ctx *ctx, const struct bpf_core_relo *relo,
|