summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/syscall.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2022-02-181-4/+36
|\
| * bpf: Convert bpf_preload.ko to use light skeleton.Alexei Starovoitov2022-02-101-0/+2
| * bpf: Extend sys_bpf commands for bpf_syscall programs.Alexei Starovoitov2022-02-101-4/+34
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-02-171-0/+3
|\ \ | |/ |/|
| * bpf: Add schedule points in batch opsEric Dumazet2022-02-171-0/+3
* | bpf: generalise tail call map compatibility checkToke Hoiland-Jorgensen2022-01-211-8/+7
* | bpf: introduce BPF_F_XDP_HAS_FRAGS flag in prog_flags loading the ebpf programLorenzo Bianconi2022-01-211-1/+3
* | bpf: support BPF_PROG_QUERY for progs attached to sockmapDi Zhu2022-01-211-0/+5
|/
* bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem.Hao Luo2021-12-181-1/+1
* add missing bpf-cgroup.h includesJakub Kicinski2021-12-161-0/+1
* Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2021-12-111-2/+2
|\
| * bpf: Pass a set of bpf_core_relo-s to prog_load command.Alexei Starovoitov2021-12-021-1/+1
| * bpf: Change bpf_kallsyms_lookup_name size type to ARG_CONST_SIZE_OR_ZEROKumar Kartikeya Dwivedi2021-12-011-1/+1
* | bpf: Fix toctou on read-only map's constant scalar trackingDaniel Borkmann2021-11-161-21/+36
|/
* Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2021-11-021-11/+66
|\
| * bpf: Add bpf_kallsyms_lookup_name helperKumar Kartikeya Dwivedi2021-10-291-0/+27
| * bpf: Add bloom filter map implementationJoanne Koong2021-10-281-3/+21
| * bpf: Use u64_stats_t in struct bpf_prog_statsEric Dumazet2021-10-271-6/+12
| * bpf: Add verified_insns to bpf_prog_info and fdinfoDave Marchevsky2021-10-221-2/+6
* | bpf: Fix potential race in tail call compatibility checkToke Høiland-Jørgensen2021-10-261-2/+4
* | bpf: Fix error usage of map_fd and fdget() in generic_map_update_batch()Xu Kuohai2021-10-231-2/+3
|/
* bpf: Use kvmalloc for map keys in syscallsStanislav Fomichev2021-08-201-17/+17
* bpf: Use kvmalloc for map values in syscallStanislav Fomichev2021-08-201-17/+11
* bpf: Allow to specify user-provided bpf_cookie for BPF perf linksAndrii Nakryiko2021-08-171-1/+1
* bpf: Implement minimal BPF perf linkAndrii Nakryiko2021-08-171-7/+98
* bpf: Add map side support for bpf timers.Alexei Starovoitov2021-07-151-4/+17
* bpf: Prepare bpf_prog_put() to be called from irq context.Alexei Starovoitov2021-07-151-6/+26
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2021-06-171-4/+43
|\
| * bpf: Support socket migration by eBPF.Kuniyuki Iwashima2021-06-151-0/+13
| * bpf: Add lookup_and_delete_elem support to hashtabDenis Salopek2021-05-241-4/+30
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2021-05-271-1/+2
|\ \ | |/ |/|
| * bpf: Add kconfig knob for disabling unpriv bpf by defaultDaniel Borkmann2021-05-111-1/+2
* | bpf: Make some symbols staticPu Lehui2021-05-191-2/+2
* | bpf: Add bpf_sys_close() helper.Alexei Starovoitov2021-05-191-0/+19
* | bpf: Add bpf_btf_find_by_name_kind() helper.Alexei Starovoitov2021-05-191-0/+2
* | bpf: Introduce fd_idxAlexei Starovoitov2021-05-191-1/+1
* | bpf: Make btf_load command to be bpfptr_t compatible.Alexei Starovoitov2021-05-191-3/+4
* | bpf: Prepare bpf syscall to be used from kernel and user space.Alexei Starovoitov2021-05-191-39/+74
* | bpf: Introduce bpf_sys_bpf() helper and program type.Alexei Starovoitov2021-05-191-0/+53
|/
* bpf: Allow trampoline re-attach for tracing and lsm programsJiri Olsa2021-04-261-6/+17
* bpf: Return target info when a tracing bpf_link is queriedToke Høiland-Jørgensen2021-04-141-0/+3
* sock_map: Introduce BPF_SK_SKB_VERDICTCong Wang2021-04-011-0/+1
* bpf: Support bpf program calling kernel functionMartin KaFai Lau2021-03-271-0/+1
* bpf: Simplify freeing logic in linfo and jited_linfoMartin KaFai Lau2021-03-271-1/+2
* bpf: Dont allow vmlinux BTF to be used in map_create and prog_load.Alexei Starovoitov2021-03-081-0/+5
* bpf: Count the number of times recursion was preventedAlexei Starovoitov2021-02-111-4/+10
* bpf: Optimize program statsAlexei Starovoitov2021-02-111-1/+1
* bpf: Prevent double bpf_prog_put call from bpf_tracing_prog_attachJiri Olsa2021-01-121-2/+4
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfDavid S. Miller2020-12-291-1/+0
|\
| * bpf: Remove unused including <linux/version.h>Tian Tao2020-12-181-1/+0