aboutsummaryrefslogtreecommitdiff
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2020-09-21bpf: Make context access check genericGravatar Lorenz Bauer 1-3/+4
2020-09-21bpf: Make reference tracking genericGravatar Lorenz Bauer 1-16/+10
2020-09-21bpf: Make BTF pointer type checking genericGravatar Lorenz Bauer 1-18/+20
2020-09-21bpf: Allow specifying a BTF ID per argument in function protosGravatar Lorenz Bauer 4-43/+27
2020-09-21bpf: Check scalar or invalid register in check_helper_mem_accessGravatar Lorenz Bauer 1-13/+11
2020-09-21btf: Make btf_set_contains take a const pointerGravatar Lorenz Bauer 1-1/+1
2020-09-21bpf: Fix sysfs export of empty BTF sectionGravatar Tony Ambardar 1-3/+3
2020-09-21bpf: Fix potential call bpf_link_free() in atomic contextGravatar Muchun Song 1-6/+2
2020-09-19bpf: Use hlist_add_head_rcu when linking to local_storageGravatar Martin KaFai Lau 1-1/+1
2020-09-17bpf: Add abnormal return checks.Gravatar Alexei Starovoitov 1-19/+48
2020-09-17bpf: allow for tailcalls in BPF subprograms for x64 JITGravatar Maciej Fijalkowski 1-4/+17
2020-09-17bpf, x64: rework pro/epilogue and tailcall handling in JITGravatar Maciej Fijalkowski 3-7/+51
2020-09-17bpf: Limit caller's stack depth 256 for subprogs with tailcallsGravatar Maciej Fijalkowski 1-0/+29
2020-09-17bpf: rename poke descriptor's 'ip' member to 'tailcall_target'Gravatar Maciej Fijalkowski 2-9/+11
2020-09-17bpf: propagate poke descriptors to subprogramsGravatar Maciej Fijalkowski 1-3/+63
2020-09-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfGravatar David S. Miller 2-12/+7
2020-09-15bpf: Add BPF_PROG_BIND_MAP syscallGravatar YiFei Zhu 1-0/+63
2020-09-15bpf: Mutex protect used_maps array and countGravatar YiFei Zhu 2-8/+23
2020-09-15bpf: Fix a rcu warning for bpffs map pretty-printGravatar Yonghong Song 1-1/+3
2020-09-10objtool: Rename frame.h -> objtool.hGravatar Julien Thierry 1-1/+1
2020-09-08sysctl: Convert to iter interfacesGravatar Matthew Wilcox (Oracle) 1-1/+1
2020-09-08bpf: Permit map_ptr arithmetic with opcode add and offset 0Gravatar Yonghong Song 1-0/+4
2020-09-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Jakub Kicinski 4-6/+6
2020-09-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Linus Torvalds 1-1/+1
2020-09-03bpf: Do not use bucket_lock for hashmap iteratorGravatar Yonghong Song 1-11/+4
2020-09-02bpf: Avoid iterating duplicated files for task_file iteratorGravatar Yonghong Song 1-4/+11
2020-09-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextGravatar David S. Miller 36-118/+2491
2020-09-01bpf: {cpu,dev}map: Change various functions return type from int to voidGravatar Björn Töpel 2-16/+10
2020-08-31bpf: Remove bpf_lsm_file_mprotect from sleepable list.Gravatar Alexei Starovoitov 2-1/+1
2020-08-31bpf: Fix build without BPF_LSM.Gravatar Alexei Starovoitov 1-0/+2
2020-08-28bpf: Add bpf_copy_from_user() helper.Gravatar Alexei Starovoitov 1-0/+22
2020-08-28bpf: Introduce sleepable BPF programsGravatar Alexei Starovoitov 5-14/+121
2020-08-28bpf: Relax max_entries check for most of the inner map typesGravatar Martin KaFai Lau 2-3/+9
2020-08-28bpf: Add map_meta_equal map opsGravatar Martin KaFai Lau 13-15/+32
2020-08-26bpf: Fix a verifier failure with xorGravatar Yonghong Song 1-0/+66
2020-08-26bpf: verifier: Use target program's type for access verificationsGravatar Udip Pant 1-11/+21
2020-08-25bpf: Add BTF_SET_START/END macrosGravatar Jiri Olsa 2-0/+19
2020-08-25bpf: Add btf_struct_ids_match functionGravatar Jiri Olsa 2-6/+42
2020-08-25bpf: Factor btf_struct_access functionGravatar Jiri Olsa 1-10/+65
2020-08-25bpf: Remove recursion call in btf_struct_accessGravatar Jiri Olsa 1-6/+5
2020-08-25bpf: Add type_id pointer as argument to __btf_resolve_sizeGravatar Jiri Olsa 1-4/+9
2020-08-25bpf: Add elem_id pointer as argument to __btf_resolve_sizeGravatar Jiri Olsa 1-3/+7
2020-08-25bpf: Move btf_resolve_size into __btf_resolve_sizeGravatar Jiri Olsa 2-11/+16
2020-08-25bpf: Disallow BPF_PRELOAD in allmodconfig buildsGravatar Alexei Starovoitov 1-0/+3
2020-08-25bpf: Allow local storage to be used from LSM programsGravatar KP Singh 1-1/+20
2020-08-25bpf: Implement bpf_local_storage for inodesGravatar KP Singh 4-1/+286
2020-08-25bpf: Split bpf_local_storage to bpf_sk_storageGravatar KP Singh 2-0/+601
2020-08-24bpf: Fix a buffer out-of-bound access when filling raw_tp link_infoGravatar Yonghong Song 1-1/+1
2020-08-23treewide: Use fallthrough pseudo-keywordGravatar Gustavo A. R. Silva 4-5/+5
2020-08-21bpf: sockmap: Allow update from BPFGravatar Lorenz Bauer 1-2/+36