summaryrefslogtreecommitdiffstats
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2020-11-14bpf: Relax return code check for subprogramsDmitrii Banshchikov1-2/+13
2020-11-11bpf: Fix unsigned 'datasec_id' compared with zero in check_pseudo_btf_idKaixu Xia1-1/+2
2020-11-06bpf: Update verification logic for LSM programsKP Singh1-3/+7
2020-11-05bpf: Zero-fill re-used per-cpu map elementDavid Verbeiren1-2/+28
2020-11-05bpf: BPF_PRELOAD depends on BPF_SYSCALLRandy Dunlap1-0/+1
2020-10-29bpf: Don't rely on GCC __attribute__((optimize)) to disable GCSEArd Biesheuvel2-2/+6
2020-10-23Merge tag 'net-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds2-7/+5
2020-10-22Merge branch 'work.set_fs' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds1-1/+1
2020-10-19bpf: Enforce id generation for all may-be-null register typeMartin KaFai Lau1-6/+5
2020-10-19bpf: Remove unneeded breakTom Rix1-1/+0
2020-10-15Merge tag 'net-next-5.10' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds41-650/+4706
2020-10-15bpf: Fix register equivalence tracking.Alexei Starovoitov1-13/+25
2020-10-14Merge tag 'objtool-core-2020-10-13' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds1-1/+1
2020-10-12Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski8-59/+397
2020-10-11bpf: Allow for map-in-map with dynamic inner array map entriesDaniel Borkmann3-11/+18
2020-10-09bpf: Track spill/fill of bounded scalars.Yonghong Song1-1/+15
2020-10-09bpf: Propagate scalar ranges through register assignments.Alexei Starovoitov1-0/+50
2020-10-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-4/+4
2020-10-08bpf: Fix scalar32_min_max_or bounds trackingDaniel Borkmann1-4/+4
2020-10-07kernel/bpf/verifier: Fix build when NET is not enabledRandy Dunlap1-0/+4
2020-10-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller1-3/+3
2020-10-06bpf: Use raw_spin_trylock() for pcpu_freelist_push/pop in NMISong Liu2-5/+97
2020-10-05bpf, verifier: Use fallthrough pseudo-keywordGustavo A. R. Silva1-2/+2
2020-10-02bpf: Deref map in BPF_PROG_BIND_MAP when it's already usedStanislav Fomichev1-1/+3
2020-10-02bpf: Introducte bpf_this_cpu_ptr()Hao Luo2-3/+22
2020-10-02bpf: Introduce bpf_per_cpu_ptr()Hao Luo3-13/+79
2020-10-02bpf: Introduce pseudo_btf_idHao Luo2-28/+112
2020-09-30bpf: Introduce BPF_F_PRESERVE_ELEMS for perf event arraySong Liu1-2/+17
2020-09-30bpf, net: Rework cookie generator as per-cpu oneDaniel Borkmann1-1/+1
2020-09-29bpf: Fix context type resolving for extension programsToke Høiland-Jørgensen1-1/+8
2020-09-29bpf: Support attaching freplace programs to multiple attach pointsToke Høiland-Jørgensen2-16/+126
2020-09-29bpf: Move prog->aux->linked_prog and trampoline into bpf_link on attachToke Høiland-Jørgensen7-253/+289
2020-09-29bpf/preload: Make sure Makefile cleans up after itself, and add .gitignoreToke Høiland-Jørgensen2-0/+6
2020-09-28bpf: Add bpf_seq_printf_btf helperAlan Maguire2-2/+3
2020-09-28bpf: Bump iter seq size to support BTF representation of large data structuresAlan Maguire1-2/+2
2020-09-28bpf: Add bpf_snprintf_btf helperAlan Maguire2-0/+5
2020-09-28bpf: Move to generic BTF show support, apply it to seq files/stringsAlan Maguire1-102/+905
2020-09-28bpf: Provide function to get vmlinux BTF informationAlan Maguire1-6/+12
2020-09-28bpf: verifier: refactor check_attach_btf_id()Toke Høiland-Jørgensen2-87/+118
2020-09-28bpf: change logging calls from verbose() to bpf_log() and use log pointerToke Høiland-Jørgensen2-28/+28
2020-09-28bpf: disallow attaching modify_return tracing functions to other BPF programsToke Høiland-Jørgensen1-0/+5
2020-09-28bpf: sockmap: Enable map_update_elem from bpf_iterLorenz Bauer1-1/+1
2020-09-28bpf, cpumap: Remove rcpu pointer from cpu_map_build_skb signatureLorenzo Bianconi1-3/+2
2020-09-28bpf: Enable BPF_PROG_TEST_RUN for raw_tracepointSong Liu1-1/+1
2020-09-25bpf, verifier: Remove redundant var_off.value ops in scalar known reg casesJohn Fastabend1-4/+2
2020-09-25bpf: Change bpf_sk_storage_*() to accept ARG_PTR_TO_BTF_ID_SOCK_COMMONMartin KaFai Lau1-2/+2
2020-09-25bpf: Enable bpf_skc_to_* sock casting helper to networking prog typeMartin KaFai Lau1-2/+32
2020-09-25bpf: Move the PTR_TO_BTF_ID check to check_reg_type()Martin KaFai Lau1-29/+31
2020-09-23Revert "bpf: Fix potential call bpf_link_free() in atomic context"Alexei Starovoitov1-2/+6
2020-09-23Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller9-235/+510