aboutsummaryrefslogtreecommitdiff
path: root/kernel/bpf/helpers.c
AgeCommit message (Expand)AuthorFilesLines
2026-02-21Convert 'alloc_obj' family to use the new default GFP_KERNEL argumentLinus Torvalds1-1/+1
2026-02-21treewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook1-2/+2
2026-02-06bpf: Remove task local storage percpu counterAmery Hung1-4/+0
2026-02-05bpf: Prevent reentrance into call_rcu_tasks_trace()Alexei Starovoitov1-1/+13
2026-02-04bpf: Reset prog callback in bpf_async_cancel_and_free()Kumar Kartikeya Dwivedi1-0/+1
2026-02-04bpf: Check for running wq callback when freeing bpf_async_cbKumar Kartikeya Dwivedi1-1/+1
2026-02-04bpf: Add a recursion check to prevent loops in bpf_timerAlexei Starovoitov1-0/+16
2026-02-04bpf: Tighten conditions when timer/wq can be called synchronouslyAlexei Starovoitov1-7/+10
2026-02-03bpf: Introduce bpf_timer_cancel_async() kfuncAlexei Starovoitov1-0/+48
2026-02-03bpf: Enable bpf_timer and bpf_wq in any contextAlexei Starovoitov1-183/+225
2026-02-03bpf: Add bpf_stream_print_stack stack dumping kfuncEmil Tsalapatis1-0/+1
2026-01-21bpf: add bpf_strncasecmp kfuncYuzuki Ishiyama1-5/+25
2026-01-20bpf: Simplify bpf_timer_cancel()Mykyta Yatsenko1-16/+11
2026-01-20bpf: Introduce lock-free bpf_async_update_prog_callback()Mykyta Yatsenko1-30/+37
2026-01-20bpf: Remove unnecessary arguments from bpf_async_set_callback()Mykyta Yatsenko1-5/+4
2026-01-20bpf: Factor out timer deletion helperMykyta Yatsenko1-11/+18
2026-01-20bpf: Fix memory access flags in helper prototypesZesen Liu1-1/+1
2026-01-20bpf: Migrate bpf_stream_vprintk() to KF_IMPLICIT_ARGSIhor Solodrai1-1/+1
2026-01-20bpf: Migrate bpf_task_work_schedule_* kfuncs to KF_IMPLICIT_ARGSIhor Solodrai1-16/+14
2026-01-20bpf: Migrate bpf_wq_set_callback_impl() to KF_IMPLICIT_ARGSIhor Solodrai1-6/+5
2026-01-02bpf: Replace __opt annotation with __nullable for kfuncsPuranjay Mohan1-14/+14
2026-01-02bpf: Remove redundant KF_TRUSTED_ARGS flag from all kfuncsPuranjay Mohan1-10/+10
2025-12-03Merge tag 'net-next-6.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds1-4/+2
2025-11-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-11/+15
2025-11-14Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.18-rc5+Alexei Starovoitov1-11/+15
2025-11-14bpf: Prevent nesting overflow in bpf_try_get_buffersSahil Chandna1-0/+3
2025-11-10bpf: Unclone skb head on bpf_dynptr_write to skb metadataJakub Sitnicki1-4/+2
2025-11-04bpf: add _impl suffix for bpf_stream_vprintk() kfuncMykyta Yatsenko1-1/+1
2025-11-04bpf:add _impl suffix for bpf_task_work_schedule* kfuncsMykyta Yatsenko1-10/+14
2025-11-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.18-rc4Alexei Starovoitov1-0/+2
2025-10-27bpf: dispatch to sleepable file dynptrMykyta Yatsenko1-0/+5
2025-10-27bpf: add kfuncs and helpers support for file dynptrsMykyta Yatsenko1-2/+90
2025-10-27bpf: add plumbing for file-backed dynptrMykyta Yatsenko1-0/+12
2025-10-27bpf: widen dynptr size/offset to 64 bitMykyta Yatsenko1-33/+33
2025-10-24bpf: Conditionally include dynptr copy kfuncsMalin Jonsson1-0/+2
2025-10-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf at 6.18-rc2Alexei Starovoitov1-11/+14
2025-10-15bpf: Consistently use bpf_rcu_lock_held() everywhereAndrii Nakryiko1-8/+4
2025-10-15bpf: Replace bpf_map_kmalloc_node() with kmalloc_nolock() to allocate bpf_asy...Alexei Starovoitov1-11/+14
2025-10-10bpf: Extract internal structs validation logic into helpersMykyta Yatsenko1-0/+10
2025-10-10bpf: add bpf_strcasestr,bpf_strncasestr kfuncsRong Tao1-21/+77
2025-09-23bpf: task work scheduling kfuncsMykyta Yatsenko1-2/+290
2025-09-23bpf: extract map key pointer calculationMykyta Yatsenko1-17/+13
2025-09-23bpf: bpf task work plumbingMykyta Yatsenko1-0/+40
2025-09-22bpf: Implement signature verification for BPF programsKP Singh1-1/+1
2025-09-18bpf: Move the signature kfuncs to helpers.cKP Singh1-0/+166
2025-09-15bpf: Do not limit bpf_cgroup_from_id to current's namespaceKumar Kartikeya Dwivedi1-1/+1
2025-09-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc5Alexei Starovoitov1-3/+13
2025-09-09bpf: Tell memcg to use allow_spinning=false path in bpf_timer_init()Peilin Ye1-2/+5
2025-09-09bpf: Fix bpf_strnstr() to handle suffix match cases betterRong Tao1-1/+8
2025-09-08bpf: replace use of system_unbound_wq with system_dfl_wqMarco Crivellari1-2/+2