aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-09-06Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextPaolo Abeni13-193/+1258
2022-09-05bpf: Optimize rcu_barrier usage between hash map and bpf_mem_alloc.Alexei Starovoitov2-19/+67
2022-09-05bpf: Remove usage of kmem_cache from bpf_mem_cache.Alexei Starovoitov1-36/+14
2022-09-05bpf: Remove prealloc-only restriction for sleepable bpf programs.Alexei Starovoitov1-23/+0
2022-09-05bpf: Prepare bpf_mem_alloc to be used by sleepable bpf programs.Alexei Starovoitov1-1/+14
2022-09-05bpf: Remove tracing program restriction on map typesAlexei Starovoitov1-42/+0
2022-09-05bpf: Convert percpu hash map to per-cpu bpf_mem_alloc.Alexei Starovoitov1-26/+19
2022-09-05bpf: Add percpu allocation support to bpf_mem_alloc.Alexei Starovoitov2-6/+40
2022-09-05bpf: Batch call_rcu callbacks instead of SLAB_TYPESAFE_BY_RCU.Alexei Starovoitov2-4/+66
2022-09-05bpf: Adjust low/high watermarks in bpf_mem_cacheAlexei Starovoitov1-14/+36
2022-09-05bpf: Optimize call_rcu in non-preallocated hash map.Alexei Starovoitov2-3/+7
2022-09-05bpf: Optimize element count in non-preallocated hash map.Alexei Starovoitov1-8/+62
2022-09-05bpf: Relax the requirement to use preallocated hash maps in tracing progs.Alexei Starovoitov1-9/+22
2022-09-05bpf: Convert hash map to bpf_mem_alloc.Alexei Starovoitov1-5/+16
2022-09-05bpf: Introduce any context BPF specific memory allocator.Alexei Starovoitov2-1/+481
2022-09-01bpf: Only add BTF IDs for socket security hooks when CONFIG_SECURITY_NETWORK is onHou Tao1-0/+6
2022-09-01bpf: Remove useless else ifJiapeng Chong1-3/+1
2022-09-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski4-9/+12
2022-09-01bpf: Use this_cpu_{inc_return|dec} for prog->activeHou Tao1-4/+4
2022-09-01bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busyHou Tao2-6/+6
2022-08-31bpf: Propagate error from htab_lock_bucket() to userspaceHou Tao1-2/+5
2022-08-31bpf: Disable preemption when increasing per-cpu map_lockedHou Tao1-5/+18
2022-08-26Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfDavid S. Miller4-9/+12
2022-08-25bpf: prepare for more bpf syscall to be used from kernel and user space.Benjamin Tissoires1-4/+6
2022-08-25bpf: Add CGROUP prefix to cgroup_iter_orderHao Luo1-16/+16
2022-08-25bpf: Don't use tnum_range on array range checking for poke descriptorsDaniel Borkmann1-6/+4
2022-08-25bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZEROKumar Kartikeya Dwivedi1-0/+3
2022-08-25bpf: Introduce cgroup iterHao Luo2-0/+287
2022-08-24bpf: Fix reference state management for synchronous callbacksKumar Kartikeya Dwivedi1-9/+33
2022-08-23bpf: Move bpf_loop and bpf_for_each_map_elem under CAP_BPFKumar Kartikeya Dwivedi1-4/+4
2022-08-23bpf: expose bpf_strtol and bpf_strtoul to all program typesStanislav Fomichev2-5/+5
2022-08-23bpf: Use cgroup_{common,current}_func_proto in more hooksStanislav Fomichev2-11/+46
2022-08-23bpf: Introduce cgroup_{common,current}_func_protoStanislav Fomichev2-53/+98
2022-08-24bpf: Fix a data-race around bpf_jit_limit.Kuniyuki Iwashima1-1/+1
2022-08-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2022-08-18bpf: Initialize the bpf_run_ctx in bpf_iter_run_prog()Martin KaFai Lau1-0/+5
2022-08-18bpf, cgroup: Fix kernel BUG in purge_effective_progsPu Lehui1-1/+3
2022-08-17Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski14-109/+157
2022-08-17net: Fix suspicious RCU usage in bpf_sk_reuseport_detach()David Howells1-1/+1
2022-08-18bpf: Restrict bpf_sys_bpf to CAP_PERFMONYiFei Zhu1-1/+1
2022-08-10bpf: Shut up kern_sys_bpf warning.Alexei Starovoitov1-0/+8
2022-08-10Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfJakub Kicinski5-17/+40
2022-08-10net: refactor bpf_sk_reuseport_detach()Hawkins Jiawei1-6/+3
2022-08-10bpf: Use bpf_map_area_alloc consistently on bpf map creationYafang Shao8-23/+22
2022-08-10bpf: Make __GFP_NOWARN consistent in bpf map creationYafang Shao6-7/+7
2022-08-10bpf: Use bpf_map_area_free instread of kvfreeYafang Shao1-2/+2
2022-08-10bpf: Remove unneeded memset in queue_stack_map creationYafang Shao1-2/+0
2022-08-10bpf: Only allow sleepable program for resched-able iteratorHou Tao1-1/+10
2022-08-10bpf: Acquire map uref in .init_seq_private for hash map iteratorHou Tao1-0/+2
2022-08-10bpf: Acquire map uref in .init_seq_private for array map iteratorHou Tao1-0/+6