summaryrefslogtreecommitdiffstats
path: root/kernel/bpf
Commit message (Expand)AuthorAgeFilesLines
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-03-231-1/+1
|\
| * bpf: skip unnecessary capability checkChenbo Feng2018-03-201-1/+1
* | bpf: create tcp_bpf_ulp allowing BPF to monitor socket TX/RX dataJohn Fastabend2018-03-193-20/+711
* | sockmap: convert refcnt to an atomic refcntJohn Fastabend2018-03-191-13/+10Star
* | bpf: extend stackmap to save binary_build_id+offset instead of addressSong Liu2018-03-151-22/+235
* | bpf: comment why dots in filenames under BPF virtual FS are not allowedQuentin Monnet2018-03-091-0/+3
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-03-061-16/+26
|\|
| * bpf: allow xadd only on aligned memoryDaniel Borkmann2018-02-231-16/+26
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-02-261-4/+0Star
|\ \ | |/ |/|
| * bpf: Remove unused callee_saved arrayJoe Stringer2018-02-151-4/+0Star
* | bpf: fix rcu lockdep warning for lpm_trie map_free callbackYonghong Song2018-02-221-2/+1Star
* | bpf: add schedule points in percpu arrays managementEric Dumazet2018-02-221-1/+4
* | bpf: fix mlock precharge on arraymapsDaniel Borkmann2018-02-161-12/+16
* | bpf: fix bpf_prog_array_copy_to_user warning from perf event prog queryDaniel Borkmann2018-02-141-1/+1
* | bpf: cpumap: use GFP_KERNEL instead of GFP_ATOMIC in __cpu_map_entry_alloc()Jason Wang2018-02-141-1/+1
* | bpf: fix sock_map_alloc() error pathEric Dumazet2018-02-141-1/+2
* | bpf: fix memory leak in lpm_trie map_free callback functionYonghong Song2018-02-141-4/+7
|/
* bpf: sockmap, fix leaking maps with attached but not detached progsJohn Fastabend2018-02-061-5/+14
* bpf: sockmap, add sock close() hook to remove socksJohn Fastabend2018-02-061-67/+101
* bpf: fix bpf_prog_array_copy_to_user() issuesAlexei Starovoitov2018-02-031-8/+24
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds2018-01-3115-593/+2359
|\
| * bpf: fix kernel page fault in lpm map trie_get_next_keyYonghong Song2018-01-271-15/+11Star
| * bpf: fix subprog verifier bypass by div/mod by 0 exceptionDaniel Borkmann2018-01-272-16/+30
| * bpf: make unknown opcode handling more robustDaniel Borkmann2018-01-272-105/+152
| * bpf: improve dead code sanitizingDaniel Borkmann2018-01-271-5/+12
| * bpf: Use the IS_FD_ARRAY() macro in map_update_elem()Mickaël Salaün2018-01-261-4/+1Star
| * bpf: fix incorrect kmalloc usage in lpm_trie MAP_GET_NEXT_KEY rcu regionYonghong Song2018-01-231-1/+1
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-01-216-68/+297
| |\
| | * bpf: add upper complexity limit to verifier logDaniel Borkmann2018-01-201-1/+2
| | * bpf: get rid of pure_initcall dependency to enable jitsDaniel Borkmann2018-01-201-7/+12
| | * bpf, verifier: detect misconfigured mem, size argument pairDaniel Borkmann2018-01-201-24/+55
| | * bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE mapYonghong Song2018-01-191-2/+93
| | * bpf: offload: report device information about offloaded mapsJakub Kicinski2018-01-182-0/+61
| | * bpf: offload: allow array map offloadJakub Kicinski2018-01-181-1/+2
| | * bpf: arraymap: use bpf_map_init_from_attr()Jakub Kicinski2018-01-181-6/+1Star
| | * bpf: arraymap: move checks out of alloc functionJakub Kicinski2018-01-181-14/+28
| | * bpf: allow socket_filter programs to use bpf_prog_test_runAlexei Starovoitov2018-01-181-0/+2
| | * bpf: add new jited info fields in bpf_dev_offload and bpf_prog_infoJiong Wang2018-01-182-13/+41
| * | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-01-202-13/+55
| |\ \ | | |/ | |/|
| * | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-01-172-4/+21
| |\ \
| * | | bpf: annotate bpf_insn_print_t with __printfJakub Kicinski2018-01-171-2/+2
| * | | bpf: offload: make bpf_offload_dev_match() reject host+host caseJakub Kicinski2018-01-171-3/+1Star
| * | | bpf: cpumap: make some functions staticWei Yongjun2018-01-171-11/+12
| * | | bpf: offload: add map offload infrastructureJakub Kicinski2018-01-143-13/+226
| * | | bpf: offload: factor out netdev checking at allocation timeJakub Kicinski2018-01-141-8/+20
| * | | bpf: rename bpf_dev_offload -> bpf_prog_offloadJakub Kicinski2018-01-141-5/+5
| * | | bpf: add helper for copying attrs to struct bpf_mapJakub Kicinski2018-01-147-40/+16Star
| * | | bpf: hashtab: move checks out of alloc functionJakub Kicinski2018-01-141-16/+39
| * | | bpf: hashtab: move attribute validation before allocationJakub Kicinski2018-01-141-24/+23Star
| * | | bpf: add map_alloc_check callbackJakub Kicinski2018-01-141-4/+13