aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf/helpers.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-10-15bpf: Remove preempt_disable in bpf_try_get_buffersTao Chen1-3/+0
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-07-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc6Alexei Starovoitov1-3/+8
2025-07-03bpf: Ensure RCU lock is held around bpf_prog_ksym_findKumar Kartikeya Dwivedi1-2/+9
2025-07-03bpf: Introduce BPF standard streamsKumar Kartikeya Dwivedi1-0/+1
2025-07-03bpf: Refactor bprintf buffer supportKumar Kartikeya Dwivedi1-15/+11
2025-07-03bpf: Add bpf_dynptr_memset() kfuncIhor Solodrai1-0/+47
2025-07-01bpf: Reject %p% format string in bprintf-like helpersPaul Chaignon1-3/+8
2025-06-27bpf: guard BTF_ID_FLAGS(bpf_cgroup_read_xattr) with CONFIG_BPF_LSMEduard Zingerman1-1/+1
2025-06-27bpf: Fix string kfuncs names in doc commentsViktor Malik1-3/+3
2025-06-26Merge branch 'vfs-6.17.bpf' of https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsAlexei Starovoitov1-0/+3
2025-06-26bpf: Add kfuncs for read-only string operationsViktor Malik1-0/+382
2025-06-23bpf: Introduce bpf_cgroup_read_xattr to read xattr of cgroup's nodeSong Liu1-0/+3
2025-05-27bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem()Hou Tao1-1/+2
2025-05-27bpf: Warn with __bpf_trap() kfunc maybe due to uninitialized variableYonghong Song1-0/+5
2025-05-27bpf: Add open coded dmabuf iteratorT.J. Mercier1-0/+5
2025-05-13bpf: Add support for __prog argument suffix to pass in prog->auxKumar Kartikeya Dwivedi1-2/+2
2025-05-12bpf: Implement dynptr copy kfuncsMykyta Yatsenko1-0/+8
2025-05-12helpers: make few bpf helpers publicMykyta Yatsenko1-12/+2
2025-05-09bpf: Allow some trace helpers for all prog typesFeng Yang1-0/+42
2025-05-06bpf: Add bpf_list_{front,back} kfuncMartin KaFai Lau1-0/+22
2025-05-06bpf: Add bpf_rbtree_{root,left,right} kfuncMartin KaFai Lau1-0/+30
2025-03-30Merge tag 'bpf-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextLinus Torvalds1-4/+119
2025-03-18bpf: Make perf_event_read_output accessible in all program types.Emil Tsalapatis1-0/+2
2025-03-15bpf/helpers: Introduce bpf_dynptr_copy kfuncMykyta Yatsenko1-0/+56
2025-03-15bpf/helpers: Refactor bpf_dynptr_read and bpf_dynptr_writeMykyta Yatsenko1-4/+16
2025-02-19bpf: Add bpf_copy_from_user_task_str() kfuncJordan Rome1-0/+45
2025-02-18bpf: Switch to use hrtimer_setup()Nam Cao1-2/+1
2025-01-20bpf: Cancel the running bpf_timer through kworker for PREEMPT_RTHou Tao1-2/+16
2025-01-08bpf: Remove migrate_{disable|enable} in bpf_obj_free_fields()Hou Tao1-4/+0
2024-12-13bpf: Fix configuration-dependent BTF function referencesThomas Weißschuh1-0/+4
2024-12-04bpf: Introduce support for bpf_local_irq_{save,restore}Kumar Kartikeya Dwivedi1-0/+17
2024-11-13Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfAlexei Starovoitov1-10/+44
2024-11-01bpf: Add open coded version of kmem_cache iteratorNamhyung Kim1-0/+3
2024-10-30bpf: Use __u64 to save the bits in bits iteratorHou Tao1-3/+30
2024-10-30bpf: Check the validity of nr_words in bpf_iter_bits_new()Hou Tao1-1/+9
2024-10-30bpf: Free dynamically allocated bits in bpf_iter_bits_destroy()Hou Tao1-6/+5
2024-10-24Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfAlexei Starovoitov1-5/+5
2024-10-22bpf: Add MEM_WRITE attributeDaniel Borkmann1-5/+5
2024-10-21bpf: Implement bpf_send_signal_task() kfuncPuranjay Mohan1-0/+1
2024-10-16bpf: Add bpf_task_from_vpid() kfuncJuntong Deng1-0/+20
2024-10-16mm/bpf: Add bpf_get_kmem_cache() kfuncNamhyung Kim1-0/+1
2024-10-03bpf: Use KF_FASTCALL to mark kfuncs supporting fastcall contractEduard Zingerman1-2/+2
2024-09-13bpf: Zero former ARG_PTR_TO_{LONG,INT} args in case of errorDaniel Borkmann1-0/+2
2024-09-13bpf: Fix helper writes to read-only mapsDaniel Borkmann1-2/+4
2024-09-13bpf: Remove truncation test in bpf_strtol and bpf_strtoul helpersDaniel Borkmann1-4/+0
2024-09-13bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bitDaniel Borkmann1-2/+2
2024-08-29bpf: Export bpf_base_func_protoMartin KaFai Lau1-0/+1
2024-08-23bpf: Add bpf_copy_from_user_str kfuncJordan Rome1-0/+42