aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-12-02Merge tag 'core-core-2025-12-03' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-2/+2
2025-12-01Merge tag 'perf-core-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-2/+2
2025-12-01Merge tag 'vfs-6.19-rc1.fd_prepare.fs' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds2-53/+23
2025-11-28bpf: convert bpf_token_create() to FD_PREPARE()Christian Brauner1-32/+15
2025-11-28bpf: convert bpf_iter_new_fd() to FD_PREPARE()Christian Brauner1-21/+8
2025-11-14bpf: account for current allocated stack depth in widen_imprecise_scalars()Eduard Zingerman1-2/+4
2025-11-04bpf: add _impl suffix for bpf_stream_vprintk() kfuncMykyta Yatsenko2-2/+3
2025-11-04bpf:add _impl suffix for bpf_task_work_schedule* kfuncsMykyta Yatsenko2-16/+20
2025-11-03ftrace: Fix BPF fexit with livepatchSong Liu1-5/+0
2025-10-29perf: Support deferred user unwindPeter Zijlstra1-2/+2
2025-10-24treewide: Remove in_irq()Matthew Wilcox (Oracle)1-2/+2
2025-10-24bpf: Conditionally include dynptr copy kfuncsMalin Jonsson1-0/+2
2025-10-21bpf: Sync pending IRQ work before freeing ring bufferNoorain Eqbal1-0/+2
2025-10-16bpf: Fix memory leak in __lookup_instance error pathShardul Bankar1-1/+3
2025-10-15bpf: Replace bpf_map_kmalloc_node() with kmalloc_nolock() to allocate bpf_async_cb structures.Alexei Starovoitov2-11/+29
2025-10-10bpf: Avoid RCU context warning when unpinning htab with internal structsKaFai Wan1-2/+2
2025-10-03Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfLinus Torvalds1-3/+4
2025-10-02Merge tag 'slab-for-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slabLinus Torvalds2-2/+2
2025-10-01bpf: Reject negative offsets for ALU opsYazhou Tang1-2/+2
2025-10-01bpf: Skip scalar adjustment for BPF_NEG if dst is a pointerBrahmajit Das1-1/+2
2025-09-30Merge tag 'bpf-next-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextLinus Torvalds26-728/+2060
2025-09-30Merge tag 'perf-core-2025-09-26' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-2/+2
2025-09-30Merge tag 'sched-core-2025-09-26' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-0/+1
2025-09-29Merge tag 'vfs-6.18-rc1.async' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds1-2/+2
2025-09-29Merge tag 'vfs-6.18-rc1.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds1-1/+1
2025-09-29mm: Allow GFP_ACCOUNT to be used in alloc_pages_nolock().Alexei Starovoitov2-2/+2
2025-09-27bpf: Enforce expected_attach_type for tailcall compatibilityDaniel Borkmann1-0/+5
2025-09-25bpf: Add lookup_and_delete_elem for BPF_MAP_STACK_TRACETao Chen2-5/+19
2025-09-25sched: Make migrate_{en,dis}able() inlineMenglong Dong1-0/+1
2025-09-23Merge branch 'bpf-next/xdp_pull_data' into 'bpf-next/master'Martin KaFai Lau1-0/+13
2025-09-23bpf: Clear packet pointers after changing packet data in kfuncsAmery Hung1-0/+13
2025-09-23bpf: Allow union argument in trampoline based programsLeon Hwang1-4/+4
2025-09-23bpf, x86: Add support for signed arena loadsKumar Kartikeya Dwivedi1-3/+8
2025-09-23bpf: task work scheduling kfuncsMykyta Yatsenko1-2/+290
2025-09-23bpf: extract map key pointer calculationMykyta Yatsenko1-17/+13
2025-09-23bpf: bpf task work plumbingMykyta Yatsenko6-18/+189
2025-09-23bpf: verifier: permit non-zero returns from async callbacksMykyta Yatsenko1-3/+2
2025-09-23bpf: htab: extract helper for freeing special structsMykyta Yatsenko1-12/+12
2025-09-23bpf: extract generic helper from process_timer_func()Mykyta Yatsenko1-11/+36
2025-09-23bpf: refactor special field-type detectionMykyta Yatsenko1-51/+33
2025-09-23VFS: rename kern_path_locked() and related functions.NeilBrown1-2/+2
2025-09-22bpf: Implement signature verification for BPF programsKP Singh2-2/+45
2025-09-19bpf: table based bpf_insn_successors()Eduard Zingerman2-71/+57
2025-09-19bpf: disable and remove registers chain based livenessEduard Zingerman2-316/+25
2025-09-19bpf: signal error if old liveness is more conservative than newEduard Zingerman1-0/+9
2025-09-19bpf: enable callchain sensitive stack liveness trackingEduard Zingerman1-8/+53
2025-09-19bpf: callchain sensitive stack liveness tracking using CFGEduard Zingerman2-1/+678
2025-09-19bpf: compute instructions postorder per subprogramEduard Zingerman1-13/+55
2025-09-19bpf: declare a few utility functions as internal apiEduard Zingerman1-18/+16
2025-09-19bpf: remove redundant REG_LIVE_READ check in stacksafe()Eduard Zingerman1-7/+0