summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2026-04-11bpf: Move checks for reserved fields out of the main passAlexei Starovoitov1-147/+200
2026-04-11bpf: Delete unused variableAlexei Starovoitov1-3/+1
2026-04-10bpf: Remove gfp_flags plumbing from bpf_local_storage_update()Amery Hung5-51/+18
2026-04-10bpf: Use kmalloc_nolock() universally in local storageAmery Hung4-118/+18
2026-04-10bpf: Enforce regsafe base id consistency for BPF_ADD_CONST scalarsDaniel Borkmann1-1/+16
2026-04-10bpf: poison dead stack slotsAlexei Starovoitov2-27/+67
2026-04-10bpf: change logging scheme for live stack analysisEduard Zingerman1-76/+165
2026-04-10bpf: simplify liveness to use (callsite, depth) keyed func_instancesEduard Zingerman2-544/+251
2026-04-10bpf: record arg tracking results in bpf_liveness masksEduard Zingerman2-62/+245
2026-04-10bpf: introduce forward arg-tracking dataflow analysisEduard Zingerman2-0/+1064
2026-04-10bpf: prepare liveness internal API for static analysis passEduard Zingerman1-25/+23
2026-04-10bpf: 4-byte precise clean_verifier_stateEduard Zingerman2-23/+85
2026-04-10bpf: make liveness.c track stack with 4-byte granularityEduard Zingerman2-64/+113
2026-04-10bpf: save subprogram name in bpf_subprog_infoEduard Zingerman1-0/+1
2026-04-10bpf: share several utility functions as internal APIEduard Zingerman2-7/+7
2026-04-10bpf: Fix RCU stall in bpf_fd_array_map_clear()Sechang Lim1-1/+3
2026-04-10bpf: return VMA snapshot from task_vma iteratorPuranjay Mohan1-12/+30
2026-04-10bpf: switch task_vma iterator from mmap_lock to per-VMA locksPuranjay Mohan1-18/+73
2026-04-10bpf: fix mm lifecycle in open-coded task_vma iteratorPuranjay Mohan1-3/+51
2026-04-09bpf: Fix use-after-free in offloaded map/prog info fillJiayuan Chen1-6/+4
2026-04-09bpf: Drop pkt_end markers on arithmetic to prevent is_pkt_ptr_branch_takenDaniel Borkmann1-8/+22
2026-04-08bpf: Remove static qualifier from local subprog pointerDaniel Borkmann1-2/+2
2026-04-08bpf: Fix ld_{abs,ind} failure path analysis in subprogsDaniel Borkmann1-2/+31
2026-04-08bpf: Propagate error from visit_tailcall_insnDaniel Borkmann1-2/+5
2026-04-08bpf: Make find_linfo widely availableKumar Kartikeya Dwivedi2-42/+38
2026-04-08bpf: Extract bpf_get_linfo_file_lineKumar Kartikeya Dwivedi1-8/+21
2026-04-07bpf: Allow overwriting referenced dynptr when refcnt > 1Amery Hung1-2/+21
2026-04-07bpf: Clear delta when clearing reg id for non-{add,sub} opsDaniel Borkmann1-28/+28
2026-04-07bpf: Fix linked reg delta tracking when src_reg == dst_regDaniel Borkmann1-1/+2
2026-04-07bpf: Retire rcu_trace_implies_rcu_gp()Kumar Kartikeya Dwivedi4-48/+19
2026-04-07bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooksJiayuan Chen1-3/+0
2026-04-06bpf: Do not ignore offsets for loads from insn_arraysAnton Protopopov1-0/+20
2026-04-06bpf: Avoid -Wflex-array-members-not-at-end warningsGustavo A. R. Silva1-5/+7
2026-04-06bpf: Enable unaligned accesses for syscall ctxKumar Kartikeya Dwivedi1-2/+1
2026-04-06bpf: Support variable offsets for syscall PTR_TO_CTXKumar Kartikeya Dwivedi1-38/+65
2026-04-05bpf: Fix stale offload->prog pointer after constant blindingMingTao Huang1-0/+2
2026-04-05bpf: fix end-of-list detection in cgroup_storage_get_next_key()Weiming Shi1-1/+1
2026-04-05bpf: Use copy_map_value_locked() in alloc_htab_elem() for BPF_F_LOCKMykyta Yatsenko1-0/+4
2026-04-05mm: rename zap_page_range_single() to zap_vma_range()David Hildenbrand (Arm)1-1/+1
2026-04-05mm/memory: remove "zap_details" parameter from zap_page_range_single()David Hildenbrand (Arm)1-2/+1
2026-04-03bpf: Add helper and kfunc stack access size resolutionAlexei Starovoitov1-0/+188
2026-04-03bpf: Move verifier helpers to headerAlexei Starovoitov1-34/+10
2026-04-03bpf: Add bpf_compute_const_regs() and bpf_prune_dead_branches() passesAlexei Starovoitov3-24/+449
2026-04-03bpf: Sort subprogs in topological order after check_cfg()Alexei Starovoitov1-0/+92
2026-04-03bpf: Do register range validation earlyAlexei Starovoitov1-26/+8
2026-04-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.0-rc6+Alexei Starovoitov2-7/+55
2026-04-02bpf: Simulate branches to prune based on range violationsHarishankar Vishwanathan1-35/+51
2026-04-02bpf: Exit early if reg_bounds_sync gets invalid inputsHarishankar Vishwanathan1-0/+5
2026-04-02bpf: Use bpf_verifier_env buffers for reg_set_min_maxPaul Chaignon1-40/+22
2026-04-02bpf: Refactor reg_bounds_sanity_checkHarishankar Vishwanathan1-24/+40