messages from 2026-09-14 00:10:49 to 2026-09-14 20:47:03 UTC [more...]
[PATCH v2 00/40] mm: make VMA flag semantics explicit, eliminate VM_SPECIAL
2026-09-14 20:47 UTC (64+ 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 v3 0/7] Misc bug fixes - part 5
2026-09-14 20:46 UTC (24+ 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
[RFC] bpf: account ring buffer backing pages separately from Lost RAM
2026-09-14 20:29 UTC (7+ messages)
` [External Mail]Re: "
[PATCH bpf-next v6 1/2] bpf: Validate program attach type during link update
2026-09-14 20:14 UTC (4+ messages)
[PATCH bpf v2 00/11] Misc BPF gotox fixes
2026-09-14 20:05 UTC (22+ 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] libbpf: Fix program log buffer size validation
2026-09-14 18:25 UTC (3+ messages)
[PATCH bpf-next v10 0/2] bpf: BPF-driven proactive memcg reclaim
2026-09-14 18:17 UTC (3+ messages)
` [PATCH bpf-next v10 1/2] mm/bpf: Add bpf_proactive_reclaim kfunc
[PATCH bpf-next v2 01/13] bpf: move linked-scalar flags out of bpf_reg_state->id [NFC]
2026-09-14 18:02 UTC (3+ messages)
[PATCH bpf-next v3 0/3] bpftool: Improve perf counter reporting
2026-09-14 18:00 UTC (8+ messages)
` [PATCH bpf-next v3 1/3] bpftool: Track perf counter snapshot state
[PATCH bpf-next v3 1/4] libbpf: Add bpf_program__add_flags() and bpf_program__clear_flags()
2026-09-14 17:30 UTC (2+ messages)
[PATCH v2 bpf-next 00/18] Support inline functions in BTF
2026-09-14 17:26 UTC (10+ 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
[PATCH bpf] bpf: Skip unsettled links in link iterator
2026-09-14 17:16 UTC (2+ messages)
[PATCH bpf v1 0/2] bpf: Compare stack frames in exact register states
2026-09-14 17:10 UTC (6+ 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 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-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
[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 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
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
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).