summaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Expand)AuthorAgeFilesLines
* Merge remote-tracking branch 'torvalds/master' into perf/coreArnaldo Carvalho de Melo2019-11-2646-773/+3506
|\
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds2019-11-2515-370/+2446
| |\
| | * 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-232-32/+1
| | * Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2019-11-225-16/+36
| | |\
| | * \ Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2019-11-2012-141/+1187
| | |\ \
| | | * | 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-202-1/+32
| | | * | 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-183-28/+14
| | | * | 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-1616-78/+172
| | |\ \ \
| | * \ \ \ Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2019-11-093-5/+39
| | |\ \ \ \ | | | |_|/ / | | |/| | |
| | * | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2019-11-025-154/+246
| | |\ \ \ \
| | | * | | | bpf: Switch BPF probe insns to bpf_probe_read_kernelDaniel Borkmann2019-11-021-4/+5
| | | * | | | bpf: Add probe_read_{user, kernel} and probe_read_{user, kernel}_str helpersDaniel Borkmann2019-11-021-46/+135
| | | * | | | bpf: Make use of probe_user_write in probe write helperDaniel Borkmann2019-11-021-4/+2
| | | * | | | xsk: Restructure/inline XSKMAP lookup/redirect/flushBjörn Töpel2019-11-021-48/+0
| | | * | | | bpf: Implement map_gen_lookup() callback for XSKMAPMaciej Fijalkowski2019-11-021-0/+17
| | | * | | | xsk: Store struct xdp_sock as a flexible array member of the XSKMAPBjörn Töpel2019-11-021-32/+23
| | | * | | | bpf: Replace prog_raw_tp+btf_id with prog_tracingAlexei Starovoitov2019-10-313-21/+63
| | | * | | | bpf: Fix bpf jit kallsym accessAlexei Starovoitov2019-10-311-3/+0
| | | * | | | bpf: Enforce 'return 0' in BTF-enabled raw_tp programsAlexei Starovoitov2019-10-301-0/+5
| | * | | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2019-11-0214-35/+338
| | |\ \ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2019-10-267-71/+611
| | |\ \ \ \ \
| | | * | | | | bpf: Prepare btf_ctx_access for non raw_tp use caseMartin KaFai Lau2019-10-244-64/+67
| | | * | | | | bpf: Fix build error without CONFIG_NETYueHaibing2019-10-181-0/+2
| | | * | | | | bpf: Fix bpf_attr.attach_btf_id checkAlexei Starovoitov2019-10-181-6/+11
| | | * | | | | bpf: Check types of arguments passed into helpersAlexei Starovoitov2019-10-173-15/+101
| | | * | | | | bpf: Add support for BTF pointers to x86 JITAlexei Starovoitov2019-10-173-1/+22
| | | * | | | | bpf: Add support for BTF pointers to interpreterAlexei Starovoitov2019-10-172-0/+27
| | | * | | | | bpf: Attach raw_tp program with BTF via type nameAlexei Starovoitov2019-10-171-23/+47
| | | * | | | | bpf: Implement accurate raw_tp context access via BTFAlexei Starovoitov2019-10-173-4/+276