summaryrefslogtreecommitdiffstats
path: root/kernel/bpf
AgeCommit message (Expand)AuthorLines
2025-04-25bpf: Add namespace to BPF internal symbolsAlexei Starovoitov-3/+4
2025-04-25bpf: fix possible endless loop in BPF map iterationBrandon Kammerdiener-1/+1
2025-04-11bpf: Convert ringbuf map to rqspinlockKumar Kartikeya Dwivedi-10/+7
2025-04-10bpf: Convert queue_stack map to rqspinlockKumar Kartikeya Dwivedi-23/+12
2025-04-10bpf: Use architecture provided res_smp_cond_load_acquireKumar Kartikeya Dwivedi-1/+1
2025-03-30Merge tag 'bpf_try_alloc_pages' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds-6/+22
2025-03-30Merge tag 'bpf_res_spin_lock' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds-217/+1094
2025-03-30Merge tag 'bpf-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/bp...Linus Torvalds-454/+1596
2025-03-26Merge tag 'net-next-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds-56/+102
2025-03-25Merge tag 'timers-cleanups-2025-03-23' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds-2/+1
2025-03-24Merge tag 'x86-core-2025-03-22' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds-2/+2
2025-03-22bpf: Fix out-of-bounds read in check_atomic_load/store()Kohei Enju-2/+14
2025-03-20bpf: Add struct_ops context information to struct bpf_prog_auxJuntong Deng-2/+6
2025-03-19bpf: Maintain FIFO property for rqspinlock unlockKumar Kartikeya Dwivedi-5/+28
2025-03-19bpf: Implement verifier support for rqspinlockKumar Kartikeya Dwivedi-42/+209
2025-03-19bpf: Introduce rqspinlock kfuncsKumar Kartikeya Dwivedi-0/+74
2025-03-19bpf: Convert lpm_trie.c to rqspinlockKumar Kartikeya Dwivedi-11/+14
2025-03-19bpf: Convert percpu_freelist.c to rqspinlockKumar Kartikeya Dwivedi-90/+27
2025-03-19bpf: Convert hashtab.c to rqspinlockKumar Kartikeya Dwivedi-70/+32
2025-03-19rqspinlock: Add entry to Makefile, MAINTAINERSKumar Kartikeya Dwivedi-1/+1
2025-03-19rqspinlock: Add basic support for CONFIG_PARAVIRTKumar Kartikeya Dwivedi-0/+3
2025-03-19rqspinlock: Add a test-and-set fallbackKumar Kartikeya Dwivedi-2/+44
2025-03-19rqspinlock: Add deadlock detection and recoveryKumar Kartikeya Dwivedi-14/+173
2025-03-19rqspinlock: Protect waiters in trylock fallback from stallsKumar Kartikeya Dwivedi-1/+7
2025-03-19rqspinlock: Protect waiters in queue from stallsKumar Kartikeya Dwivedi-3/+100
2025-03-19rqspinlock: Protect pending bit owners from stallsKumar Kartikeya Dwivedi-5/+27
2025-03-19rqspinlock: Hardcode cond_acquire loops for arm64Kumar Kartikeya Dwivedi-0/+15
2025-03-19rqspinlock: Add support for timeoutsKumar Kartikeya Dwivedi-0/+45
2025-03-19rqspinlock: Drop PV and virtualization supportKumar Kartikeya Dwivedi-90/+1
2025-03-19rqspinlock: Add rqspinlock.h headerKumar Kartikeya Dwivedi-1/+2
2025-03-19locking: Copy out qspinlock.c to kernel/bpf/rqspinlock.cKumar Kartikeya Dwivedi-0/+410
2025-03-18bpf: clarify a misleading verifier error messageAndrea Terzolo-1/+1
2025-03-18bpf: Reject attaching fexit/fmod_ret to __noreturn functionsYafang Shao-0/+32
2025-03-18bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates ...Martin KaFai Lau-5/+6
2025-03-18bpf: Make perf_event_read_output accessible in all program types.Emil Tsalapatis-0/+7
2025-03-17bpftool: Using the right format specifiersJiayuan Chen-2/+2
2025-03-17bpf: Return prog btf_id without capable checkMykyta Yatsenko-2/+2
2025-03-17bpf: BPF token support for BPF_BTF_GET_FD_BY_IDMykyta Yatsenko-2/+21
2025-03-15bpf: Check map->record at the beginning of check_and_free_fields()Hou Tao-0/+3
2025-03-15bpf: preload: Add MODULE_DESCRIPTIONArnd Bergmann-0/+1
2025-03-15security: Propagate caller information in bpf hooksBlaise Boscaccy-5/+5
2025-03-15bpf: fix missing kdoc string fields in cpumask.cEmil Tsalapatis-0/+20
2025-03-15bpf: add kfunc for populating cpumask bitsEmil Tsalapatis-0/+33
2025-03-15bpf: correct use/def for may_goto instructionEduard Zingerman-0/+1
2025-03-15bpf: use register liveness information for func_states_equalEduard Zingerman-4/+10
2025-03-15bpf: simple DFA-based live registers analysisEduard Zingerman-6/+314
2025-03-15bpf: get_call_summary() utility functionEduard Zingerman-64/+57
2025-03-15bpf: jmp_offset() and verbose_insn() utility functionsEduard Zingerman-17/+23
2025-03-15bpf: Introduce load-acquire and store-release instructionsPeilin Ye-9/+125
2025-03-15bpf: Add verifier support for timed may_gotoKumar Kartikeya Dwivedi-8/+87