bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2026-09-12 19:52:20 to 2026-09-14 17:07:02 UTC [more...]

[PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL
 2026-09-14 17:07 UTC  (50+ messages)
` [PATCH v2 01/40] mm/vma: fix mmap_prepare file handling, remove file_doesnt_need_get
` [PATCH v2 02/40] mm/vma: predicate setting mmap_prepare VMA fields on new vma alloc
` [PATCH v2 03/40] mm/vma: introduce and use vma_[flags_]can_merge()
` [PATCH v2 04/40] mm: consistently validate VMA state after mmap[_prepare] hooks
` [PATCH v2 05/40] mm/vma: ensure mmap_prepare doesn't set actions on a mergeable vma
` [PATCH v2 06/40] mm: make map_kernel_pages_[prepare,complete] internal and unexported
` [PATCH v2 07/40] mm/vma: tidy up map kernel pages enum values
` [PATCH v2 08/40] mm: add mmap action for discontiguous kernel page mapping
` [PATCH v2 09/40] docs: filesystems: update mmap_prepare docs for discontig kernel pgs
` [PATCH v2 10/40] drivers/usb/mon: update to use mmap_prepare + map kernel pages
` [PATCH v2 11/40] infiniband: update hfi1 to use remap_vmalloc_range()
` [PATCH v2 12/40] selinux: reject writable opens of policy file, drop mmap shared/write check
` [PATCH v2 13/40] ALSA: pcm: use vm_insert_page() to map PCM status page
` [PATCH v2 14/40] bpf: arena: mark arena_map_mmap() mappings VM_MIXEDMAP
` [PATCH v2 15/40] mm/vma: add vma[_flags]_is_kernel_owned() predicates
` [PATCH v2 16/40] mm/vma: only allow mmap to clear VMA_MAYWRITE_BIT if kernel-owned
` [PATCH v2 17/40] mm/vma: add and use vma_[flags]_is_fixed_mapping
` [PATCH v2 18/40] scsi: sg: convert mmap hook to mmap_prepare and rework
` [PATCH v2 19/40] fbdev: defio: assert FBINFO_VIRTFB, drop VM_IO, add VM_MIXEDMAP
` [PATCH v2 20/40] HSI: cmt_speech: convert mmap hook to mmap_prepare, refactor
` [PATCH v2 21/40] mm/gup: error out early on !VMA_MAYREAD_BIT VMAs
` [PATCH v2 22/40] uprobes: remove VM_IO, set VM_MIXEDMAP for mapped kernel pages
` [PATCH v2 23/40] mm/mlock: clear VMA_LOCKED_MASK over mmap callback
` [PATCH v2 24/40] mm/mlock: eliminate weird VMA_IO_BIT abuse and simplify
` [PATCH v2 25/40] mm/vma: enforce that only kernel-owned mappings may set VMA_IO_BIT
` [PATCH v2 26/40] mm: remove VMA_IO_BIT check in vma[_flags]_is_kernel_owned()
` [PATCH v2 27/40] mm: remove hugetlb_inline.h
` [PATCH v2 28/40] mm: rename is_vm_hugetlb_page() to vma_is_hugetlb()
` [PATCH v2 29/40] mm: drop some redundant checks around hugetlb VMAs
` [PATCH v2 30/40] mm/madvise: update is_valid_guard_vma() to use vma_can_merge()
` [PATCH v2 31/40] mm/vma: introduce vma[_flags]_is_persistent()
` [PATCH v2 32/40] mm/uffd: use predicates for userfaultfd checks
` [PATCH v2 33/40] mm/madvise: use predicates for madvise(..., MADV_DOFORK)
` [PATCH v2 34/40] mm: eliminate VMA_SPECIAL_FLAGS usage when hugetlb explicitly tested
` [PATCH v2 35/40] mm: eliminate VMA_SPECIAL_FLAGS check in lru_gen_look_around()
` [PATCH v2 36/40] mm: avoid use of VMA_SPECIAL_FLAGS in migrate_vma_setup()
` [PATCH v2 37/40] mm: eliminate VM_SPECIAL, VMA_SPECIAL_FLAGS
` [PATCH v2 38/40] fuse: dax: do not set VM_MIXEDMAP
` [PATCH v2 39/40] mm/huge_memory: remove vma_is_special_huge()
` [PATCH v2 40/40] mm/vma: introduce and use vma[_flags]_can_gup()

[PATCH bpf v2 00/11] Misc BPF gotox fixes
 2026-09-14 17:03 UTC  (12+ messages)
` [PATCH bpf v2 01/11] bpf: Avoid quadratic successor rescan in bpf_compute_scc
` [PATCH bpf v2 02/11] bpf: Bound the number of indirect jump edges in a program
` [PATCH bpf v2 03/11] bpf: Cache the jump table of a subprogram during CFG discovery
` [PATCH bpf v2 04/11] bpf: Reject indirect jumps that leave their subprogram
` [PATCH bpf v2 05/11] bpf: Don't remove indirect jump targets in the nop removal pass
` [PATCH bpf v2 06/11] bpf: Clear insn array jitted pointers on map reuse
` [PATCH bpf v2 07/11] bpf: Retarget indirect jump targets across prologue prepends
` [PATCH bpf v2 08/11] selftests/bpf: Add tests for the indirect jump edge limit
` [PATCH bpf v2 09/11] selftests/bpf: Add tests for indirect jumps across subprograms
` [PATCH bpf v2 10/11] selftests/bpf: Add tests for gotox nop targets and insn array reuse
` [PATCH bpf v2 11/11] selftests/bpf: Add tests for gotox targets across prologue prepends

[PATCH bpf] bpf: Skip unsettled links in link iterator
 2026-09-14 17:02 UTC 

[PATCH bpf 1/6] bpf: Avoid quadratic successor rescan in bpf_compute_scc
 2026-09-14 16:48 UTC  (4+ messages)
` [PATCH bpf 3/6] bpf: Cache the jump table of a subprogram during CFG discovery

[PATCH 0/3] keys: Add well known IDs for fs-verity/dm-verity keys
 2026-09-14 16:41 UTC  (4+ messages)
` [PATCH 1/3] keys: add KEY_SPEC_DM_VERITY_KEYRING
` [PATCH 2/3] keys: add KEY_SPEC_FS_VERITY_KEYRING
` [PATCH 3/3] Documentation: keys: document IDs added since KEY_SPEC_REQKEY_AUTH_KEY

[PATCH bpf-next v2] bpftool: Compute map size of light skeletons at runtime
 2026-09-14 16:39 UTC  (2+ messages)

[PATCH bpf v1 0/2] bpf: Compare stack frames in exact register states
 2026-09-14 16:39 UTC  (5+ messages)
` [PATCH bpf v1 1/2] bpf: Compare stack frames in regs_exact()
` [PATCH bpf v1 2/2] selftests/bpf: Cover frame changes in bounded loops

[PATCH bpf-next v3 0/3] bpftool: Improve perf counter reporting
 2026-09-14 15:57 UTC  (7+ messages)
` [PATCH bpf-next v3 1/3] bpftool: Track perf counter snapshot state

[PATCH bpf-next v8 0/2] libbpf: improve BPF load performance by selectively loading module BTFs
 2026-09-14 15:54 UTC  (5+ messages)
` [PATCH bpf-next v8 1/2] libbpf: support selective kernel module BTF loading via bpf_object_open_opts

[PATCH v2 bpf-next 00/18] Support inline functions in BTF
 2026-09-14 15:38 UTC  (8+ messages)
` [PATCH v2 bpf-next 01/18] btf: Extend UAPI to support BTF location (inline site) info
` [PATCH v2 bpf-next 13/18] kbuild: Add support for BTF inline information

[RFC PATCH 00/57] mm/collapse: rebuild collapse on migration primitives
 2026-09-14 15:07 UTC  (10+ messages)

[PATCH net-next v6 09/14] net: lan966x: add shutdown callback to stop FDMA on reboot
 2026-09-14 15:06 UTC  (3+ messages)

[PATCH bpf v3 0/7] Misc bug fixes - part 5
 2026-09-14 14:45 UTC  (15+ messages)
` [PATCH bpf v3 1/7] bpf: Make post-verification instruction rewrites killable
` [PATCH bpf v3 2/7] bpf: Preserve packet pointer class displacement in regsafe()
` [PATCH bpf v3 3/7] selftests/bpf: Test packet pointer class displacement pruning
` [PATCH bpf v3 4/7] bpf: Restrict CO-RE poisoning to relocatable instructions
` [PATCH bpf v3 5/7] selftests/bpf: Test CO-RE instruction poisoning restrictions
` [PATCH bpf v3 6/7] bpf: Assign lock identity to callback map values
` [PATCH bpf v3 7/7] selftests/bpf: Check callback map value lock identity

[PATCH v2 0/8] mm: distinguish PTE table storage from PTE values
 2026-09-14 14:27 UTC  (5+ messages)

[PATCH bpf-next v2 0/2] Fix acyclic ownership checks
 2026-09-14 14:16 UTC  (4+ messages)
` [PATCH bpf-next v2 1/2] bpf: Bound ownership depth through local kptrs and graph roots
` [PATCH bpf-next v2 2/2] selftests/bpf: Check local object ownership depth

[PATCH net-next v6 08/14] net: lan966x: clear FDMA interrupt stickies after switch reset
 2026-09-14 14:09 UTC  (3+ messages)

[PATCH net-next v6 03/14] net: microchip: fdma: add PCIe ATU support
 2026-09-14 13:57 UTC  (3+ messages)

[PATCH bpf v3 0/2] Fix global subprog verification context
 2026-09-14 13:27 UTC  (4+ messages)
` [PATCH bpf v3 1/2] bpf: Verify global subprogs in each sleepability context
` [PATCH bpf v3 2/2] selftests/bpf: Test global subprog callback contexts

[PATCH bpf] libbpf: Fix program log buffer size validation
 2026-09-14 13:22 UTC  (2+ messages)

bpf: BPF_MAP_UPDATE_BATCH into a fresh NO_PREALLOC LPM trie / hash map returns -ENOMEM at element 2 on AWS Graviton5 (bpf_mem_alloc refill IPI races the syscall)
 2026-09-14 13:11 UTC  (4+ messages)

[PATCH] riscv: patch: fix handling of bpf-jit execmem addresses
 2026-09-14 11:56 UTC 

linux-next: manual merge of the bpf-next tree with the bpf tree
 2026-09-14 11:34 UTC  (2+ messages)

[PATCH 0/7] arm64: Batch PSTATE.TCO handling in kernel nofault loops
 2026-09-14 11:27 UTC  (2+ messages)

[PATCH 0/2] Drop redundant tcp_rate_check_app_limited calls
 2026-09-14 10:06 UTC  (9+ messages)
` [PATCH bpf 1/2] bpf: drop duplicate check_app_limited in tcp_bpf_push
` [PATCH net 2/2] tls: drop duplicate check_app_limited in tls_push_sg

[PATCH bpf-next] selftests/bpf: Replace %pK output with 0
 2026-09-14  9:22 UTC  (5+ messages)

[PATCH bpf v3 0/2] net: xdp: fix bpf_xdp_shrink_data() page handling on generic XDP and veth
 2026-09-14  8:46 UTC  (4+ messages)
` [PATCH bpf v3 1/2] bpf, veth: xdp: fix page_pool page leak on skb-backed XDP

[RFC PATCH bpf-next 0/6] bpf: Add UHMUL and SHMUL instructions
 2026-09-14  8:36 UTC  (6+ messages)
` [RFC PATCH bpf-next 1/6] "

[RFC PATCH v3 0/5] blk-iocost: BPF struct_ops cost model
 2026-09-14  8:11 UTC  (9+ messages)
` [RFC PATCH v3 1/5] blk-iocost: add BPF struct_ops cost model support
` [RFC PATCH v3 2/5] selftests/bpf: add iocost cost model test
` [RFC PATCH v3 3/5] blk-iocost: add iocost_ioc_tick tracepoint for per-period device summary
` [RFC PATCH v3 4/5] selftests/bpf: add multi-stream sequentiality example model
` [RFC PATCH v3 5/5] docs: cgroup-v2: document io.cost model=<name> binding

[PATCHv2 bpf-next] bpf, x86: Use global buffer for trampoline size generation
 2026-09-14  5:00 UTC  (2+ messages)

[PATCH bpf v3] bpf, sockmap: Fix self-redirect copied_seq double-counting
 2026-09-14  5:00 UTC  (2+ messages)

[PATCH bpf v3 0/2] bpf, arm64: fix the exception callback's frame pointer
 2026-09-14  5:00 UTC  (2+ messages)

[PATCH v3] bpf: Fix u32 overflow issue in map batch operations
 2026-09-14  5:00 UTC  (2+ messages)

[PATCH bpf v3] bpf: Fix non-linear SRH access in bpf_update_srh_state()
 2026-09-14  4:56 UTC  (2+ messages)

[PATCH bpf-next v2] libbpf: fix log level propagation for light skeleton loaders
 2026-09-14  4:50 UTC  (2+ messages)

[PATCH bpf-next v3] selftests/bpf: Add test for indirect struct_ops trampoline
 2026-09-14  4:50 UTC  (2+ messages)

[PATCH bpf v2 0/2] bpf: Fix use-after-free of progs detached from busy trampolines
 2026-09-14  4:13 UTC  (3+ messages)
` [PATCH bpf v2 1/2] bpf: Skip detached progs in trampoline images that are still in use

[PATCH v15 net-next 0/2] octeontx2-pf: mqprio bandwidth offload for NIX TX schedulers
 2026-09-14  3:15 UTC  (4+ messages)
` [PATCH v15 net-next 1/2] octeontx2: use atomic bitops for PF/VF and rep flags

[PATCH bpf v4] bpf: Fix UAF due to concurrent consumption of ttrace lists in alloc_bulk
 2026-09-14  2:50 UTC  (3+ messages)

[PATCH bpf-next v3 00/15] BPF interface for applying Landlock rulesets
 2026-09-14  2:31 UTC  (14+ messages)
` [PATCH bpf-next v3 04/15] lsm: Add the bpf_lsm_policy_release kfunc and policy object destructor
                ` LSM boundaries. Was: "

[PATCH] HID: bpf: reject oversized device events before copying
 2026-09-14  0:15 UTC 

[PATCH bpf v3 0/2] bpf: Track iterator-owned BTF pointer lifetime
 2026-09-14  0:07 UTC  (4+ messages)
` [PATCH bpf v3 1/2] bpf: Invalidate iterator-owned BTF pointers on next and destroy

[PATCH RFC v2 00/15] rcu-tasks: let preemption outside trampolines be a quiescent state
 2026-09-13 18:20 UTC  (15+ messages)
` [PATCH RFC v2 08/15] bpf, x86: Maintain Tasks RCU trampoline nesting in the BPF trampoline

[PATCH bpf v2 0/3] libbpf: Validate struct_ops member offsets
 2026-09-13 15:49 UTC  (9+ messages)
` [PATCH bpf v2 1/3] libbpf: Validate struct_ops member offsets before data access
` [PATCH bpf v2 2/3] bpftool: Keep struct_ops field offsets when skipping bitfields
` [PATCH bpf v2 3/3] selftests/bpf: Cover struct_ops bitfield and offset validation

[PATCH bpf-next v4 00/15] bpf: Support by-value struct and __int128 arguments
 2026-09-13  4:00 UTC  (19+ messages)
` [PATCH bpf-next v4 01/15] bpf: Read a kfunc's __sz argument only when it is in a register
` [PATCH bpf-next v4 03/15] bpf: Rename bpf_subprog_info::arg_cnt to arg_slot_cnt
` [PATCH bpf-next v4 05/15] bpf: Support by-value struct arguments up to 16 bytes
` [PATCH bpf-next v4 06/15] bpf: Support __int128 as a by-value function argument
` [PATCH bpf-next v4 07/15] bpf: Rename bpf_call_summary::num_params to arg_slot_cnt
` [PATCH bpf-next v4 08/15] bpf: Recognize by-value struct and __int128 kfunc arguments
` [PATCH bpf-next v4 09/15] bpf: Prepare kfunc arguments for the JIT from an ABI description
` [PATCH bpf-next v4 10/15] bpf, x86: Move kfunc arguments into the x86-64 calling convention
` [PATCH bpf-next v4 11/15] bpf, arm64: Place trampoline arguments by the arm64 "
` [PATCH bpf-next v4 12/15] bpf, arm64: Move kfunc arguments into "
` [PATCH bpf-next v4 13/15] selftests/bpf: Add C tests for by-value arguments up to 16 bytes
` [PATCH bpf-next v4 14/15] selftests/bpf: Add inline-asm tests for by-value arguments
` [PATCH bpf-next v4 15/15] selftests/bpf: Add tests for by-value kfunc arguments

ANNOUNCE: pahole v1.32 (DWZ alt files, lots of new regression tests, BTF signatures, coverage analysis)
 2026-09-13  2:21 UTC 

[RFC PATCH 00/20] rv: Add support for BPF monitors
 2026-09-13  1:26 UTC  (18+ messages)

[PATCH bpf-next v3] bpf, x86: Add support for BPF_SDIV and BPF_SMOD in the i386 JIT
 2026-09-12 22:27 UTC  (2+ messages)

[PATCH] sched: Set need-resched flags before tracing
 2026-09-12 21:30 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).