summaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2023-12-07bpf: Fix prog_array_map_poke_run map poke updateJiri Olsa1-48/+10
2023-12-02bpf: Fix a verifier bug due to incorrect branch offset comparison with cpu=v4Yonghong Song1-4/+8
2023-11-27bpf: Add missed allocation hint for bpf_mem_cache_alloc_flags()Hou Tao1-0/+2
2023-11-21bpf: keep track of max number of bpf_loop callback iterationsEduard Zingerman1-2/+17
2023-11-21bpf: widening for callback iteratorsEduard Zingerman1-2/+22
2023-11-21bpf: verify callbacks as if they are called unknown number of timesEduard Zingerman1-99/+175
2023-11-21bpf: extract setup_func_entry() utility functionEduard Zingerman1-36/+48
2023-11-21bpf: extract __check_reg_arg() utility functionEduard Zingerman1-6/+13
2023-11-15bpf: Do not allocate percpu memory at init stageYonghong Song2-7/+21
2023-11-10bpf: fix control-flow graph checking in privileged modeAndrii Nakryiko1-15/+8
2023-11-10bpf: fix precision backtracking instruction iterationAndrii Nakryiko1-2/+19
2023-11-10bpf: handle ldimm64 properly in check_cfg()Andrii Nakryiko1-7/+20
2023-11-08bpf: Let verifier consider {task,cgroup} is trusted in bpf_iter_regChuyi Zhou2-2/+2
2023-11-02bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_ENDShung-Hsi Yu1-1/+6
2023-11-02bpf: Relax allowlist for css_task iterChuyi Zhou1-4/+12
2023-11-02bpf: Check map->usercnt after timer->timer is assignedHou Tao1-9/+16
2023-11-02bpf: Add __bpf_kfunc_{start,end}_defs macrosDave Marchevsky6-32/+16
2023-11-02bpf: Fix check_stack_write_fixed_off() to correctly spill immHao Sun1-1/+1
2023-11-02bpf: fix compilation error without CGROUPSMatthieu Baerts3-3/+17
2023-11-02Merge tag 'for-6.7/io_uring-sockopt-2023-10-30' of git://git.kernel.dk/linuxLinus Torvalds1-11/+14
2023-10-31Merge tag 'net-next-6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds19-312/+1766
2023-10-30Merge tag 'vfs-6.7.ctime' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs...Linus Torvalds1-3/+2
2023-10-30Merge tag 'vfs-6.7.misc' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds1-3/+1
2023-10-26bpf: Add more WARN_ON_ONCE checks for mismatched alloc and freeHou Tao1-0/+4
2023-10-25netkit, bpf: Add bpf programmable net deviceDaniel Borkmann1-5/+25
2023-10-24bpf: Improve JEQ/JNE branch taken logicAndrii Nakryiko1-0/+8
2023-10-24bpf: Fold smp_mb__before_atomic() into atomic_set_release()Paul E. McKenney1-2/+1
2023-10-24bpf: Fix unnecessary -EBUSY from htab_lock_bucketSong Liu1-2/+5
2023-10-24bpf: print full verifier states on infinite loop detectionEduard Zingerman1-0/+4
2023-10-24bpf: correct loop detection for iterators convergenceEduard Zingerman1-4/+203
2023-10-24bpf: exact states comparison for iterator convergence checksEduard Zingerman1-31/+187
2023-10-24bpf: extract same_callsites() as utility functionEduard Zingerman1-5/+15
2023-10-24bpf: move explored_state() closer to the beginning of verifier.cEduard Zingerman1-15/+13
2023-10-24bpf, tcx: Get rid of tcx_link_constDaniel Borkmann1-2/+2
2023-10-21bpf: Use bpf_global_percpu_ma for per-cpu kptr in __bpf_obj_drop_impl()Hou Tao2-10/+16
2023-10-21bpf: Move the declaration of __bpf_obj_drop_impl() to bpf.hHou Tao2-4/+0
2023-10-21bpf: Use pcpu_alloc_size() in bpf_mem_free{_rcu}()Hou Tao1-2/+14
2023-10-21bpf: Re-enable unit_size checking for global per-cpu allocatorHou Tao1-10/+12
2023-10-20bpf: Let bpf_iter_task_new accept null task ptrChuyi Zhou2-3/+17
2023-10-20bpf: teach the verifier to enforce css_iter and task_iter in RCU CSChuyi Zhou2-13/+41
2023-10-20bpf: Introduce css open-coded iterator kfuncsChuyi Zhou2-0/+68
2023-10-20bpf: Introduce task open coded iterator kfuncsChuyi Zhou2-0/+93
2023-10-20bpf: Introduce css_task open-coded iterator kfuncsChuyi Zhou3-0/+84
2023-10-19bpf: Add sockptr support for setsockoptBreno Leitao1-2/+3
2023-10-19bpf: Add sockptr support for getsockoptBreno Leitao1-9/+11
2023-10-19file: convert to SLAB_TYPESAFE_BY_RCUChristian Brauner1-3/+1
2023-10-18bpf: convert to new timestamp accessorsJeff Layton1-3/+2
2023-10-17bpf: Fix missed rcu read lock in bpf_task_under_cgroup()Yafang Shao1-1/+6
2023-10-17net, bpf: Add a warning if NAPI cb missed xdp_do_flush().Sebastian Andrzej Siewior2-0/+20
2023-10-17Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski8-39/+203