summaryrefslogtreecommitdiffstats
path: root/kernel/bpf
Commit message (Expand)AuthorAgeFilesLines
* bpf: Fix incorrect verifier simulation of ARSH under ALU32Daniel Borkmann2020-01-152-5/+17
* bpf: Fix passing modified ctx to ld/abs/ind instructionDaniel Borkmann2020-01-061-2/+7
* bpf: cgroup: prevent out-of-order release of cgroup bpfRoman Gushchin2020-01-061-2/+9
* bpf: Fix precision tracking for unbounded scalarsDaniel Borkmann2019-12-221-21/+22
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netLinus Torvalds2019-12-225-38/+92
|\
| * bpf: Fix record_func_key to perform backtracking on r3Daniel Borkmann2019-12-191-1/+7
| * bpf: Fix cgroup local storage prog trackingDaniel Borkmann2019-12-173-15/+14
| * bpf: Fix missing prog untrack in release_mapsDaniel Borkmann2019-12-162-16/+12
| * bpf: Make BPF trampoline use register_ftrace_direct() APIAlexei Starovoitov2019-12-111-6/+58
| * bpf: Fix build in minimal configurations, againArnd Bergmann2019-12-111-0/+1
* | treewide: Use sizeof_field() macroPankaj Bharadiya2019-12-092-3/+3
|/
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netLinus Torvalds2019-12-082-2/+8
|\
| * bpf: Fix a bug when getting subprog 0 jited image in check_attach_btf_idYonghong Song2019-12-041-1/+4
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfDavid S. Miller2019-12-021-1/+4
| |\
| | * bpf: Fix build in minimal configurationsAlexei Starovoitov2019-11-291-0/+1
| | * bpf: Fix static checker warningAlexei Starovoitov2019-11-271-1/+3
* | | Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2019-12-031-1/+1
|\ \ \ | |/ / |/| |
| * | irq_work: Convert flags to atomic_tFrederic Weisbecker2019-11-111-1/+1
* | | Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2019-11-261-1/+1
|\ \ \
| * | | locking/lockdep: Remove unused @nested argument from lock_release()Qian Cai2019-10-091-1/+1
* | | | Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2019-11-261-2/+2
|\ \ \ \ | |_|_|/ |/| | |
| * | | bpf/cgroup: Replace rcu_swap_protected() with rcu_replace_pointer()Paul E. McKenney2019-10-301-2/+2
| |/ /
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds2019-11-2512-313/+2267
|\ \ \
| * | | bpf: Simplify __bpf_arch_text_poke poke type handlingDaniel Borkmann2019-11-242-15/+5
| * | | bpf: Constant map key tracking for prog array pokesDaniel Borkmann2019-11-241-9/+111
| * | | bpf: Add poke dependency tracking for prog array mapsDaniel Borkmann2019-11-243-12/+200
| * | | bpf: Add initial poke descriptor table for jit imagesDaniel Borkmann2019-11-241-0/+34
| * | | bpf: Move owner type, jited info into array auxiliary dataDaniel Borkmann2019-11-244-21/+43
| * | | bpf: Move bpf_free_used_maps into sleepable sectionDaniel Borkmann2019-11-242-20/+23
| * | | bpf: Provide better register bounds after jmp32 instructionsYonghong Song2019-11-241-0/+19
| * | | xdp: Fix cleanup on map free for devmap_hash map typeToke Høiland-Jørgensen2019-11-241-28/+46
| * | | Revert "bpf: Emit audit messages upon successful prog load and unload"Jakub Kicinski2019-11-231-31/+0
| * | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2019-11-221-1/+3
| |\ \ \
| * \ \ \ Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2019-11-2010-135/+1184
| |\ \ \ \
| | * | | | bpf: Switch bpf_map_{area_alloc,area_mmapable_alloc}() to u64 sizeDaniel Borkmann2019-11-201-4/+7
| | * | | | bpf: Emit audit messages upon successful prog load and unloadDaniel Borkmann2019-11-201-0/+31
| | * | | | bpf: Make array_map_mmap staticYueHaibing2019-11-191-1/+1
| | * | | | bpf: Add mmap() support for BPF_MAP_TYPE_ARRAYAndrii Nakryiko2019-11-182-9/+148
| | * | | | bpf: Convert bpf_prog refcnt to atomic64_tAndrii Nakryiko2019-11-182-23/+12
| | * | | | bpf: Switch bpf_map ref counter to atomic64_t so bpf_map_inc() never failsAndrii Nakryiko2019-11-185-40/+27
| | * | | | bpf: Support attaching tracing BPF program to other BPF programsAlexei Starovoitov2019-11-154-27/+147
| | * | | | bpf: Compare BTF types of functions arguments with actual typesAlexei Starovoitov2019-11-153-3/+98
| | * | | | bpf: Annotate context typesAlexei Starovoitov2019-11-153-6/+114
| | * | | | bpf: Fix race in btf_resolve_helper_id()Alexei Starovoitov2019-11-152-6/+28
| | * | | | bpf: Introduce BPF trampolineAlexei Starovoitov2019-11-156-8/+419
| | * | | | bpf: Add bpf_arch_text_poke() helperAlexei Starovoitov2019-11-151-0/+6
| | * | | | bpf: Support doubleword alignment in bpf_jit_binary_allocIlya Leoshkevich2019-11-151-0/+4
| | * | | | bpf: Add array support to btf_struct_accessMartin KaFai Lau2019-11-071-29/+166
| | * | | | bpf: Account for insn->off when doing bpf_probe_read_kernelMartin KaFai Lau2019-11-061-1/+1
| * | | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2019-11-092-4/+7
| |\ \ \ \ \ | | |/ / / / | |/| | | / | | | |_|/ | | |/| |