summaryrefslogtreecommitdiffstats
path: root/kernel/bpf
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'uaccess.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2020-06-101-19/+6
|\
| * bpf: make bpf_check_uarg_tail_zero() use check_zeroed_user()Al Viro2020-06-031-19/+6
* | mmap locking API: add mmap_read_trylock_non_owner()Michel Lespinasse2020-06-091-12/+5
* | mmap locking API: use coccinelle to convert mmap_sem rwsem call sitesMichel Lespinasse2020-06-091-2/+2
* | mm: introduce include/linux/pgtable.hMike Rapoport2020-06-091-1/+1
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds2020-06-0325-568/+3080
|\ \
| * | bpf, cgroup: Return ENOLINK for auto-detached links on updateJakub Sitnicki2020-06-011-1/+1
| * | bpf: Add link-based BPF program attachment to network namespaceJakub Sitnicki2020-06-012-2/+245
| * | flow_dissector: Move out netns_bpf prog callbacksJakub Sitnicki2020-06-012-0/+134
| * | net: Introduce netns_bpf for BPF programs attached to netnsJakub Sitnicki2020-06-011-3/+4
| * | bpf: Use tracing helpers for lsm programsJiri Olsa2020-06-011-1/+1
| * | xdp: Rename convert_to_xdp_frame in xdp_convert_buff_to_frameLorenzo Bianconi2020-06-012-2/+2
| * | bpf: Change kvfree to kfree in generic_map_lookup_batch()Denis Efremov2020-06-011-1/+1
| * | xdp: Add xdp_txq_info to xdp_buffDavid Ahern2020-06-011-0/+3
| * | bpf: Add support to attach bpf program to a devmap entryDavid Ahern2020-06-011-4/+84
| * | devmap: Formalize map value as a named structDavid Ahern2020-06-011-17/+28
| * | bpf: Implement BPF ring buffer and verifier support for itAndrii Nakryiko2020-06-015-50/+670
| * | bpf: Fix map permissions checkAnton Protopopov2020-06-011-1/+2
| * | bpf: Extend bpf_base_func_proto helpers with probe_* and *current_task*John Fastabend2020-06-011-0/+24
| * | bpf: Fix spelling in comment explaining ARG1 in ___bpf_prog_runChris Packham2020-06-011-1/+1
| * | bpf: Fix returned error sign when link doesn't support updatesJakub Sitnicki2020-06-011-1/+1
| * | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2020-05-311-18/+16
| |\ \
| * \ \ Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2020-05-241-3/+14
| |\ \ \
| * | | | bpf: Verifier track null pointer branch_taken with JNE and JEQJohn Fastabend2020-05-211-3/+33
| * | | | xsk: Move xskmap.c to net/xdp/Björn Töpel2020-05-212-268/+0
| * | | | bpf: Add get{peer, sock}name attach types for sock_addrDaniel Borkmann2020-05-192-1/+17
| * | | | bpf: Fix check_return_code to only allow [0,1] in trace_iter progsDaniel Borkmann2020-05-161-1/+2
| * | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller2020-05-153-4/+27
| |\ \ \ \
| * | | | | bpf: Implement CAP_BPFAlexei Starovoitov2020-05-1513-54/+106
| * | | | | xdp: Cpumap redirect use frame_sz and increase skb_tailroomJesper Dangaard Brouer2020-05-141-18/+3
| * | | | | bpf: Fix bpf_iter's task iterator logicAndrii Nakryiko2020-05-141-1/+7
| * | | | | bpf: Enable bpf_iter targets registering ctx argument typesYonghong Song2020-05-135-6/+32
| * | | | | bpf: Change func bpf_iter_unreg_target() signatureYonghong Song2020-05-131-2/+2
| * | | | | bpf: net: Refactor bpf_iter target registrationYonghong Song2020-05-133-42/+42
| * | | | | bpf: Add comments to interpret bpf_prog return valuesYonghong Song2020-05-131-0/+6
| * | | | | bpf, libbpf: Replace zero-length array with flexible-arrayGustavo A. R. Silva2020-05-111-1/+1
| * | | | | bpf: Support variable length array in tracing programsYonghong Song2020-05-091-0/+37
| * | | | | bpf: Handle spilled PTR_TO_BTF_ID properly when checking stack_boundaryYonghong Song2020-05-091-0/+5
| * | | | | bpf: Add PTR_TO_BTF_ID_OR_NULL supportYonghong Song2020-05-092-5/+16
| * | | | | bpf: Add task and task/file iterator targetsYonghong Song2020-05-092-1/+334
| * | | | | bpf: Add bpf_map iteratorYonghong Song2020-05-093-1/+117
| * | | | | bpf: Implement common macros/helpers for target iteratorsYonghong Song2020-05-091-5/+80
| * | | | | bpf: Create file bpf iteratorYonghong Song2020-05-092-2/+20
| * | | | | bpf: Create anonymous bpf iteratorYonghong Song2020-05-092-0/+155
| * | | | | bpf: Implement bpf_seq_read() for bpf iteratorYonghong Song2020-05-091-0/+123
| * | | | | bpf: Support bpf tracing/iter programs for BPF_LINK_UPDATEYonghong Song2020-05-091-0/+31
| * | | | | bpf: Support bpf tracing/iter programs for BPF_LINK_CREATEYonghong Song2020-05-092-0/+76
| * | | | | bpf: Allow loading of a bpf_iter programYonghong Song2020-05-092-0/+57
| * | | | | bpf: Implement an interface to register bpf_iter targetsYonghong Song2020-05-092-1/+60
| * | | | | bpf: Fix use-after-free of bpf_link when priming half-failsAndrii Nakryiko2020-05-011-6/+7