aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/bpf
AgeCommit message (Expand)AuthorFilesLines
2025-05-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski3-4/+5
2025-05-01bpf: Allow XDP dev-bound programs to perform XDP_REDIRECT into mapsLorenzo Bianconi1-11/+16
2025-05-01bpf: Replace offsetof() with struct_size()Thorsten Blum1-2/+3
2025-04-28Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc4Alexei Starovoitov3-4/+5
2025-04-25bpf: Add namespace to BPF internal symbolsAlexei Starovoitov2-3/+4
2025-04-25bpf: fix possible endless loop in BPF map iterationBrandon Kammerdiener1-1/+1
2025-04-23bpf: Allow access to const void pointer arguments in tracing programsKaFai Wan1-11/+7
2025-04-23bpf: Use proper type to calculate bpf_raw_tp_null_args.mask indexShung-Hsi Yu1-2/+2
2025-04-21Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-3/+3
2025-04-21Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after rc3Alexei Starovoitov3-34/+20
2025-04-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski3-34/+20
2025-04-17bpf: Prepare to reuse get_ctx_arg_idxAmery Hung1-3/+3
2025-04-11bpf: Convert ringbuf map to rqspinlockKumar Kartikeya Dwivedi1-10/+7
2025-04-10trace: tcp: Add tracepoint for tcp_sendmsg_locked()Breno Leitao1-0/+1
2025-04-10bpf: Convert queue_stack map to rqspinlockKumar Kartikeya Dwivedi1-23/+12
2025-04-10bpf: Use architecture provided res_smp_cond_load_acquireKumar Kartikeya Dwivedi1-1/+1
2025-04-09bpf: Don't allocate per-cpu extra_elems for fd htabHou Tao1-7/+6
2025-04-09bpf: Add is_fd_htab() helperHou Tao1-3/+7
2025-04-09bpf: Support atomic update for htab of mapsHou Tao1-23/+21
2025-04-09bpf: Rename __htab_percpu_map_update_elem to htab_map_update_elem_in_placeHou Tao1-9/+8
2025-04-09bpf: Factor out htab_elem_value helper()Hou Tao1-34/+30
2025-04-08VFS: rename lookup_one_len family to lookup_noperm and remove permission checkNeilBrown1-1/+1
2025-03-30Merge tag 'bpf_try_alloc_pages' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextLinus Torvalds2-6/+22
2025-03-30Merge tag 'bpf_res_spin_lock' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextLinus Torvalds10-217/+1094
2025-03-30Merge tag 'bpf-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextLinus Torvalds15-454/+1596
2025-03-26Merge tag 'net-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextLinus Torvalds3-56/+102
2025-03-25Merge tag 'timers-cleanups-2025-03-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-2/+1
2025-03-24Merge tag 'x86-core-2025-03-22' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-2/+2
2025-03-22bpf: Fix out-of-bounds read in check_atomic_load/store()Kohei Enju1-2/+14
2025-03-20bpf: Add struct_ops context information to struct bpf_prog_auxJuntong Deng1-2/+6
2025-03-19bpf: Maintain FIFO property for rqspinlock unlockKumar Kartikeya Dwivedi1-5/+28
2025-03-19bpf: Implement verifier support for rqspinlockKumar Kartikeya Dwivedi3-42/+209
2025-03-19bpf: Introduce rqspinlock kfuncsKumar Kartikeya Dwivedi1-0/+74
2025-03-19bpf: Convert lpm_trie.c to rqspinlockKumar Kartikeya Dwivedi1-11/+14
2025-03-19bpf: Convert percpu_freelist.c to rqspinlockKumar Kartikeya Dwivedi2-90/+27
2025-03-19bpf: Convert hashtab.c to rqspinlockKumar Kartikeya Dwivedi1-70/+32
2025-03-19rqspinlock: Add entry to Makefile, MAINTAINERSKumar Kartikeya Dwivedi1-1/+1
2025-03-19rqspinlock: Add basic support for CONFIG_PARAVIRTKumar Kartikeya Dwivedi1-0/+3
2025-03-19rqspinlock: Add a test-and-set fallbackKumar Kartikeya Dwivedi1-2/+44
2025-03-19rqspinlock: Add deadlock detection and recoveryKumar Kartikeya Dwivedi1-14/+173
2025-03-19rqspinlock: Protect waiters in trylock fallback from stallsKumar Kartikeya Dwivedi1-1/+7
2025-03-19rqspinlock: Protect waiters in queue from stallsKumar Kartikeya Dwivedi2-3/+100
2025-03-19rqspinlock: Protect pending bit owners from stallsKumar Kartikeya Dwivedi1-5/+27
2025-03-19rqspinlock: Hardcode cond_acquire loops for arm64Kumar Kartikeya Dwivedi1-0/+15
2025-03-19rqspinlock: Add support for timeoutsKumar Kartikeya Dwivedi1-0/+45
2025-03-19rqspinlock: Drop PV and virtualization supportKumar Kartikeya Dwivedi1-90/+1
2025-03-19rqspinlock: Add rqspinlock.h headerKumar Kartikeya Dwivedi1-1/+2
2025-03-19locking: Copy out qspinlock.c to kernel/bpf/rqspinlock.cKumar Kartikeya Dwivedi1-0/+410
2025-03-18bpf: clarify a misleading verifier error messageAndrea Terzolo1-1/+1
2025-03-18bpf: Reject attaching fexit/fmod_ret to __noreturn functionsYafang Shao1-0/+32