summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2025-03-17bpf: Return prog btf_id without capable checkMykyta Yatsenko1-2/+2
2025-03-17bpf: BPF token support for BPF_BTF_GET_FD_BY_IDMykyta Yatsenko1-2/+21
2025-03-15bpf: Check map->record at the beginning of check_and_free_fields()Hou Tao1-0/+3
2025-03-15bpf: preload: Add MODULE_DESCRIPTIONArnd Bergmann1-0/+1
2025-03-15security: Propagate caller information in bpf hooksBlaise Boscaccy1-5/+5
2025-03-15bpf: fix missing kdoc string fields in cpumask.cEmil Tsalapatis1-0/+20
2025-03-15bpf: add kfunc for populating cpumask bitsEmil Tsalapatis1-0/+33
2025-03-15bpf: correct use/def for may_goto instructionEduard Zingerman1-0/+1
2025-03-15bpf: use register liveness information for func_states_equalEduard Zingerman1-4/+10
2025-03-15bpf: simple DFA-based live registers analysisEduard Zingerman1-6/+314
2025-03-15bpf: get_call_summary() utility functionEduard Zingerman1-64/+57
2025-03-15bpf: jmp_offset() and verbose_insn() utility functionsEduard Zingerman1-17/+23
2025-03-15bpf: Introduce load-acquire and store-release instructionsPeilin Ye3-9/+125
2025-03-15bpf: Add verifier support for timed may_gotoKumar Kartikeya Dwivedi2-8/+87
2025-03-15bpf: Factor out check_load_mem() and check_store_reg()Peilin Ye1-43/+67
2025-03-15bpf: Factor out check_atomic_rmw()Peilin Ye1-24/+29
2025-03-15bpf: Factor out atomic_ptr_type_ok()Peilin Ye1-5/+21
2025-03-15bpf: no longer acquire map_idr_lock in bpf_map_inc_not_zero()Eric Dumazet1-5/+2
2025-03-15bpf: Summarize sleepable global subprogsKumar Kartikeya Dwivedi1-14/+48
2025-03-15bpf: Allow pre-ordering for bpf cgroup progsYonghong Song2-9/+27
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-03-08net: move misc netdev_lock flavors to a separate headerJakub Kicinski1-0/+1
2025-03-07bpf: fix a possible NULL deref in bpf_map_offload_map_alloc()Eric Dumazet1-3/+5
2025-03-06net: hold netdev instance lock during ndo_bpfStanislav Fomichev1-2/+4
2025-03-04x86/smp: Move cpu number to percpu hot sectionBrian Gerst1-2/+2
2025-03-04Merge branch 'x86/cpu' into x86/asm, to pick up dependent commitsIngo Molnar6-35/+49
2025-02-27x86/bpf: Fix BPF percpu accessesBrian Gerst1-1/+1
2025-02-27Change inode_operations.mkdir to return struct dentry *NeilBrown1-4/+4
2025-02-27Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski6-35/+49
2025-02-27bpf: Use try_alloc_pages() to allocate pages for bpf needs.Alexei Starovoitov2-6/+22
2025-02-27bpf: cpumap: switch to napi_skb_cache_get_bulk()Alexander Lobakin1-9/+6
2025-02-27bpf: cpumap: reuse skb array instead of a linked list to chain skbsAlexander Lobakin1-58/+61
2025-02-27bpf: cpumap: switch to GRO from netif_receive_skb_list()Alexander Lobakin1-3/+43
2025-02-25selftests/bpf: Test gen_pro/epilogue that generate kfuncsAmery Hung1-0/+1
2025-02-25bpf: Search and add kfuncs in struct_ops prologue and epilogueAmery Hung1-1/+24
2025-02-25bpf: abort verification if env->cur_state->loop_entry != NULLEduard Zingerman1-2/+4
2025-02-24bpf: Fix kmemleak warning for percpu hashmapYonghong Song1-3/+3
2025-02-23bpf: Refactor check_ctx_access()Amery Hung1-36/+20
2025-02-20bpf: Do not allow tail call in strcut_ops program with __ref argumentAmery Hung1-1/+19
2025-02-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf bpf-6.14-rc4Alexei Starovoitov6-35/+49
2025-02-20Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfLinus Torvalds6-35/+49
2025-02-20bpf: Support selective sampling for bpf timestampingJason Xing1-0/+1
2025-02-19bpf: Add bpf_copy_from_user_task_str() kfuncJordan Rome1-0/+45
2025-02-18bpf: fix env->peak_states computationEduard Zingerman1-2/+13
2025-02-18bpf: free verifier states when they are no longer referencedEduard Zingerman1-24/+67
2025-02-18bpf: use list_head to track explored states and free listEduard Zingerman1-38/+36
2025-02-18bpf: do not update state->loop_entry in get_loop_entry()Eduard Zingerman1-11/+2
2025-02-18bpf: make state->dfs_depth < state->loop_entry->dfs_depth an invariantEduard Zingerman1-3/+3
2025-02-18bpf: detect infinite loop in get_loop_entry()Eduard Zingerman1-18/+21