/linux-6.12.1/Documentation/bpf/libbpf/ |
D | program_types.rst | 82 … | | ``freplace+`` [#fentry]_ | … 182 … | ``BPF_MODIFY_RETURN`` | ``fmod_ret+`` [#fentry]_ | … 184 … | | ``fmod_ret.s+`` [#fentry]_ | Yes … 186 … | ``BPF_TRACE_FENTRY`` | ``fentry+`` [#fentry]_ … 188 … | | ``fentry.s+`` [#fentry]_ |… 190 … | ``BPF_TRACE_FEXIT`` | ``fexit+`` [#fentry]_ | … 192 … | | ``fexit.s+`` [#fentry]_ | Yes … 198 … | ``BPF_TRACE_RAW_TP`` | ``tp_btf+`` [#fentry]_ | … 216 .. [#fentry] The ``fentry`` attach format is ``fentry[.s]/<function>``.
|
/linux-6.12.1/drivers/ras/ |
D | debugfs.c | 48 struct dentry *fentry; in ras_add_daemon_trace() local 53 fentry = debugfs_create_file("daemon_active", S_IRUSR, ras_debugfs_dir, in ras_add_daemon_trace() 55 if (IS_ERR(fentry)) in ras_add_daemon_trace()
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | tailcall_bpf2bpf_fentry.c | 11 int BPF_PROG(fentry, struct sk_buff *skb) in BPF_PROG() argument
|
D | test_trace_ext_tracing.c | 10 int BPF_PROG(fentry, struct sk_buff *skb) in BPF_PROG() argument
|
D | tailcall_bpf2bpf_hierarchy_fentry.c | 25 int BPF_PROG(fentry, struct sk_buff *skb) in BPF_PROG() argument
|
/linux-6.12.1/net/smc/ |
D | smc_ism.c | 487 struct smcd_dev *smcd, *fentry; in smcd_register_dev() local 510 fentry = list_first_entry_or_null(&smcd_dev_list.list, in smcd_register_dev() 512 if (fentry && smc_ism_is_loopback(fentry)) in smcd_register_dev() 513 list_add(&smcd->list, &fentry->list); in smcd_register_dev()
|
/linux-6.12.1/tools/testing/selftests/bpf/benchs/ |
D | run_bench_rename.sh | 5 for i in base kprobe kretprobe rawtp fentry fexit
|
D | run_bench_trigger.sh | 7 fentry fexit fmodret \
|
D | bench_trigger.c | 477 BENCH_TRIG_KERNEL(fentry, "fentry");
|
/linux-6.12.1/tools/testing/selftests/bpf/ |
D | test_ftrace.sh | 37 ./test_progs -t fentry
|
/linux-6.12.1/arch/x86/include/asm/ |
D | ftrace.h | 9 # error Compiler does not support fentry?
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | trace_ext.c | 75 prog = skel_trace->progs.fentry; in test_trace_ext()
|
/linux-6.12.1/drivers/cdrom/ |
D | gdrom.c | 315 int fentry, lentry, track, data, err; in gdrom_get_last_session() local 331 fentry = get_entry_track(gd.toc->first); in gdrom_get_last_session() 340 } while (track >= fentry); in gdrom_get_last_session()
|
/linux-6.12.1/drivers/clk/tegra/ |
D | clk-tegra210.c | 2894 struct tegra_clk_pll_freq_table *fentry; in tegra210_enable_pllu() local 2899 for (fentry = pll_u_freq_table; fentry->input_rate; fentry++) { in tegra210_enable_pllu() 2900 if (fentry->input_rate == pll_ref_freq) in tegra210_enable_pllu() 2904 if (!fentry->input_rate) { in tegra210_enable_pllu() 2918 reg |= fentry->m; in tegra210_enable_pllu() 2919 reg |= fentry->n << 8; in tegra210_enable_pllu() 2920 reg |= fentry->p << 16; in tegra210_enable_pllu()
|
/linux-6.12.1/scripts/ |
D | recordmcount.h | 360 char const *fentry = "__fentry__"; in get_mcountsym() local 366 (strcmp(fentry, symname) == 0)) in get_mcountsym()
|
/linux-6.12.1/tools/objtool/include/objtool/ |
D | elf.h | 66 u8 fentry : 1; member
|
/linux-6.12.1/Documentation/bpf/ |
D | drgn.rst | 29 programs via ``freplace``/``fentry``/``fexit`` mechanisms, since there is no
|
/linux-6.12.1/Documentation/trace/ |
D | ftrace-uses.rst | 94 (where the fentry or mcount is within the function) 282 Although the ip must be the address where the call to fentry or mcount is
|
/linux-6.12.1/arch/riscv/net/ |
D | bpf_jit_comp64.c | 812 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in __arch_prepare_bpf_trampoline() local 957 for (i = 0; i < fentry->nr_links; i++) { in __arch_prepare_bpf_trampoline() 958 ret = invoke_bpf_prog(fentry->links[i], args_off, retval_off, run_ctx_off, in __arch_prepare_bpf_trampoline()
|
/linux-6.12.1/arch/s390/net/ |
D | bpf_jit_comp.c | 2575 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in __arch_prepare_bpf_trampoline() local 2740 for (i = 0; i < fentry->nr_links; i++) in __arch_prepare_bpf_trampoline() 2741 if (invoke_bpf_prog(tjit, m, fentry->links[i], in __arch_prepare_bpf_trampoline()
|
/linux-6.12.1/arch/arm64/net/ |
D | bpf_jit_comp.c | 2121 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in prepare_trampoline() local 2231 for (i = 0; i < fentry->nr_links; i++) in prepare_trampoline() 2232 invoke_bpf_prog(ctx, fentry->links[i], args_off, in prepare_trampoline()
|
/linux-6.12.1/arch/x86/net/ |
D | bpf_jit_comp.c | 2878 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in __arch_prepare_bpf_trampoline() local 3035 if (fentry->nr_links) { in __arch_prepare_bpf_trampoline() 3036 if (invoke_bpf(m, &prog, fentry, regs_off, run_ctx_off, in __arch_prepare_bpf_trampoline()
|
/linux-6.12.1/tools/bpf/bpftool/Documentation/ |
D | bpftool-prog.rst | 56 | **struct_ops** | **fentry** | **fexit** | **freplace** | **sk_lookup**
|
/linux-6.12.1/tools/objtool/ |
D | check.c | 1461 if (opts.mcount && sym->fentry) { in annotate_call_site() 2610 func->fentry = true; in classify_symbols() 2745 if (dest->fentry || dest->embedded_insn) in is_special_call()
|
/linux-6.12.1/tools/bpf/bpftool/bash-completion/ |
D | bpftool | 496 fentry fexit freplace sk_lookup'
|