aboutsummaryrefslogtreecommitdiff
path: root/kernel/bpf/trampoline.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-14Merge tag 'net-next-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Gravatar Linus Torvalds 1-11/+7
2024-04-12bpf: Choose RCU Tasks based on TASKS_RCU rather than PREEMPTIONGravatar Paul E. McKenney 1-1/+1
2024-04-02bpf: Improve program stats run-time calculationGravatar Jose Fernandez 1-1/+2
2024-03-18bpf: Check return from set_memory_rox()Gravatar Christophe Leroy 1-3/+5
2024-03-18bpf: Remove arch_unprotect_bpf_trampoline()Gravatar Christophe Leroy 1-7/+0
2024-03-11bpf: move sleepable flag from bpf_prog_aux to bpf_progGravatar Andrii Nakryiko 1-2/+2
2023-12-06bpf: Use arch_bpf_trampoline_sizeGravatar Song Liu 1-21/+34
2023-12-06bpf: Add arch_bpf_trampoline_size()Gravatar Song Liu 1-0/+6
2023-12-06bpf: Add helpers for trampoline image managementGravatar Song Liu 1-7/+39
2023-12-06bpf: Adjust argument names of arch_prepare_bpf_trampoline()Gravatar Song Liu 1-2/+2
2023-09-12bpf, x64: Fix tailcall infinite loopGravatar Leon Hwang 1-2/+2
2023-09-06bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check.Gravatar Sebastian Andrzej Siewior 1-3/+2
2023-05-15bpf: Fix memleak due to fentry attach failureGravatar Yafang Shao 1-6/+15
2023-05-15bpf: Remove bpf trampoline selectorGravatar Yafang Shao 1-7/+4
2023-04-26Merge tag 'net-next-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Gravatar Linus Torvalds 1-28/+0
2023-03-21ftrace: Rename _ftrace_direct_multi APIs to _ftrace_direct APIsGravatar Florent Revest 1-6/+6
2023-03-21ftrace: Let unregister_ftrace_direct_multi() call ftrace_free_filter()Gravatar Florent Revest 1-1/+1
2023-03-15bpf: Fix attaching fentry/fexit/fmod_ret/lsm to modulesGravatar Viktor Malik 1-28/+0
2022-12-28bpf: Fix panic due to wrong pageattr of im->imageGravatar Chuang Wang 1-0/+4
2022-12-17Merge tag 'x86_mm_for_6.2_v2' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-2/+1
2022-12-15mm: Introduce set_memory_rox()Gravatar Peter Zijlstra 1-2/+1
2022-10-25bpf: Remove prog->active check for bpf_lsm and bpf_iterGravatar Martin KaFai Lau 1-13/+67
2022-09-29bpf: Add __bpf_prog_{enter,exit}_struct_ops for struct_ops trampolineGravatar Martin KaFai Lau 1-0/+23
2022-09-26bpf: Enforce W^X for bpf trampolineGravatar Song Liu 1-17/+5
2022-09-21bpf: Prevent bpf program recursion for raw tracepoint probesGravatar Jiri Olsa 1-13/+2
2022-09-01bpf: Use this_cpu_{inc_return|dec} for prog->activeGravatar Hou Tao 1-4/+4
2022-08-05bpf: Cleanup ftrace hash in bpf_trampoline_putGravatar Jiri Olsa 1-1/+4
2022-07-29bpf: Remove unneeded semicolonGravatar Yang Li 1-1/+1
2022-07-29bpf: Fix NULL pointer dereference when registering bpf trampolineGravatar Xu Kuohai 1-1/+4
2022-07-29bpf: Fix test_progs -j error with fentry/fexit testsGravatar Song Liu 1-1/+1
2022-07-22bpf: Support bpf_trampoline on functions with IPMODIFY (e.g. livepatch)Gravatar Song Liu 1-17/+141
2022-07-19bpf: fix lsm_cgroup build errors on esoteric configsGravatar Stanislav Fomichev 1-1/+1
2022-07-11bpf: Remove is_valid_bpf_tramp_flags()Gravatar Xu Kuohai 1-0/+3
2022-06-29bpf: minimize number of allocated lsm slots per programGravatar Stanislav Fomichev 1-0/+1
2022-06-29bpf: per-cgroup lsm flavorGravatar Stanislav Fomichev 1-0/+198
2022-06-29bpf: add bpf_func_t and trampoline helpersGravatar Stanislav Fomichev 1-30/+33
2022-05-11bpf: Fix potential array overflow in bpf_trampoline_get_progs()Gravatar Yuntao Wang 1-6/+12
2022-05-10bpf, x86: Attach a cookie to fentry/fexit/fmod_ret/lsm.Gravatar Kui-Feng Lee 1-2/+5
2022-05-10bpf, x86: Create bpf_tramp_run_ctx on the caller thread's stackGravatar Kui-Feng Lee 1-4/+16
2022-05-10bpf, x86: Generate trampolines from bpf_tramp_linksGravatar Kui-Feng Lee 1-32/+41
2022-03-27Merge tag 'x86_core_for_5.18_rc1' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-16/+4
2022-03-15x86/ibt,ftrace: Search for __fentry__ locationGravatar Peter Zijlstra 1-16/+4
2022-02-23bpf: Cleanup commentsGravatar Tom Rix 1-1/+1
2022-02-09Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextGravatar Jakub Kicinski 1-3/+3
2022-02-07bpf: Use bytes instead of pages for bpf_jit_[charge|uncharge]_modmemGravatar Song Liu 1-3/+3
2022-01-25bpf: Fix possible race in inc_misses_counterGravatar He Fengqing 1-2/+3
2021-12-13bpf: Add get_func_[arg|ret|arg_cnt] helpersGravatar Jiri Olsa 1-0/+8
2021-10-27bpf: Use u64_stats_t in struct bpf_prog_statsGravatar Eric Dumazet 1-3/+3
2021-10-27bpf: Fixes possible race in update_prog_stats() for 32bit archesGravatar Eric Dumazet 1-2/+4
2021-09-13bpf: Introduce helper bpf_get_branch_snapshotGravatar Song Liu 1-1/+2