Home
last modified time | relevance | path

Searched refs:fentry (Results 1 - 25 of 28) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/ras/
H A Ddebugfs.c42 struct dentry *fentry; in ras_add_daemon_trace() local
47 fentry = debugfs_create_file("daemon_active", S_IRUSR, ras_debugfs_dir, in ras_add_daemon_trace()
49 if (!fentry) in ras_add_daemon_trace()
/kernel/linux/linux-6.6/drivers/ras/
H A Ddebugfs.c42 struct dentry *fentry; in ras_add_daemon_trace() local
47 fentry = debugfs_create_file("daemon_active", S_IRUSR, ras_debugfs_dir, in ras_add_daemon_trace()
49 if (IS_ERR(fentry)) in ras_add_daemon_trace()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/
H A Dkfree_skb.c66 struct bpf_program *prog, *fentry, *fexit; in test_kfree_skb() local
88 fentry = bpf_object__find_program_by_title(obj2, "fentry/eth_type_trans"); in test_kfree_skb()
89 if (CHECK(!fentry, "find_prog", "prog eth_type_trans not found\n")) in test_kfree_skb()
102 link_fentry = bpf_program__attach_trace(fentry); in test_kfree_skb()
103 if (CHECK(IS_ERR(link_fentry), "attach fentry", "err %ld\n", in test_kfree_skb()
H A Dtrace_ext.c70 /* set tracing's attach target - fentry */ in test_trace_ext()
71 prog = skel_trace->progs.fentry; in test_trace_ext()
103 "check", "failed to trigger fentry/test_pkt_md_access_new\n"); in test_trace_ext()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H A Dtest_trace_ext_tracing.c9 SEC("fentry/test_pkt_md_access_new")
10 int BPF_PROG(fentry, struct sk_buff *skb) in BPF_PROG()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dtest_trace_ext_tracing.c9 SEC("fentry/test_pkt_md_access_new")
10 int BPF_PROG(fentry, struct sk_buff *skb) in BPF_PROG()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
H A Dtest_ftrace.sh32 ./test_progs -t fentry
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dtest_ftrace.sh37 ./test_progs -t fentry
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Dftrace.h7 # error Compiler does not support fentry?
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dftrace.h7 # error Compiler does not support fentry?
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dtrace_ext.c74 /* set tracing's attach target - fentry */ in test_trace_ext()
75 prog = skel_trace->progs.fentry; in test_trace_ext()
107 "failed to trigger fentry/test_pkt_md_access_new"); in test_trace_ext()
/kernel/linux/linux-5.10/drivers/cdrom/
H A Dgdrom.c316 int fentry, lentry, track, data, err; in gdrom_get_last_session() local
332 fentry = get_entry_track(gd.toc->first); in gdrom_get_last_session()
341 } while (track >= fentry); in gdrom_get_last_session()
/kernel/linux/linux-6.6/drivers/cdrom/
H A Dgdrom.c315 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()
/kernel/linux/linux-5.10/tools/objtool/
H A Delf.h62 u8 fentry : 1; member
/kernel/linux/linux-5.10/scripts/
H A Drecordmcount.h360 char const *fentry = "__fentry__"; in get_mcountsym() local
366 (strcmp(fentry, symname) == 0)) in get_mcountsym()
/kernel/linux/linux-6.6/scripts/
H A Drecordmcount.h360 char const *fentry = "__fentry__"; in get_mcountsym() local
366 (strcmp(fentry, symname) == 0)) in get_mcountsym()
/kernel/linux/linux-6.6/mm/
H A Dswap_state.c768 * @fentry: swap entry of this memory
780 static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask, in swap_vma_readahead() argument
837 return read_swap_cache_async(fentry, gfp_mask, vma, vmf->address, in swap_vma_readahead()
/kernel/linux/linux-5.10/drivers/clk/tegra/
H A Dclk-tegra210.c2843 struct tegra_clk_pll_freq_table *fentry; in tegra210_enable_pllu() local
2848 for (fentry = pll_u_freq_table; fentry->input_rate; fentry++) { in tegra210_enable_pllu()
2849 if (fentry->input_rate == pll_ref_freq) in tegra210_enable_pllu()
2853 if (!fentry->input_rate) { in tegra210_enable_pllu()
2867 reg |= fentry->m; in tegra210_enable_pllu()
2868 reg |= fentry->n << 8; in tegra210_enable_pllu()
2869 reg |= fentry->p << 16; in tegra210_enable_pllu()
/kernel/linux/linux-6.6/drivers/clk/tegra/
H A Dclk-tegra210.c2894 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()
/kernel/linux/linux-6.6/tools/objtool/include/objtool/
H A Delf.h66 u8 fentry : 1; member
/kernel/linux/linux-5.10/mm/
H A Dswap_state.c820 * @fentry: swap entry of this memory
832 static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask, in swap_vma_readahead() argument
875 return read_swap_cache_async(fentry, gfp_mask, vma, vmf->address, in swap_vma_readahead()
/kernel/linux/linux-5.10/arch/x86/net/
H A Dbpf_jit_comp.c1781 struct bpf_tramp_progs *fentry = &tprogs[BPF_TRAMP_FENTRY]; in arch_prepare_bpf_trampoline() local
1795 /* room for return value of orig_call or fentry prog */ in arch_prepare_bpf_trampoline()
1824 if (fentry->nr_progs) in arch_prepare_bpf_trampoline()
1825 if (invoke_bpf(m, &prog, fentry, stack_size, in arch_prepare_bpf_trampoline()
1894 /* restore return value of orig_call or fentry prog back into RAX */ in arch_prepare_bpf_trampoline()
/kernel/linux/linux-6.6/arch/arm64/net/
H A Dbpf_jit_comp.c1843 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in prepare_trampoline() local
1949 for (i = 0; i < fentry->nr_links; i++) in prepare_trampoline()
1950 invoke_bpf_prog(ctx, fentry->links[i], args_off, in prepare_trampoline()
/kernel/linux/linux-6.6/arch/riscv/net/
H A Dbpf_jit_comp64.c795 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in __arch_prepare_bpf_trampoline() local
930 for (i = 0; i < fentry->nr_links; i++) { in __arch_prepare_bpf_trampoline()
931 ret = invoke_bpf_prog(fentry->links[i], args_off, retval_off, run_ctx_off, in __arch_prepare_bpf_trampoline()
/kernel/linux/linux-6.6/arch/s390/net/
H A Dbpf_jit_comp.c2212 struct bpf_tramp_links *fentry = &tlinks[BPF_TRAMP_FENTRY]; in __arch_prepare_bpf_trampoline() local
2376 for (i = 0; i < fentry->nr_links; i++) in __arch_prepare_bpf_trampoline()
2377 if (invoke_bpf_prog(tjit, m, fentry->links[i], in __arch_prepare_bpf_trampoline()

Completed in 35 milliseconds

12